X-Git-Url: https://www.tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fnetutl.c;h=f49178bdfafbc1028314ffe145d02e61d44e51f6;hb=386a62ff57f283b415fd757a8c4645b24c3bd3bb;hp=5b4badfd799d354ac2376774c85cdd3a2759efcd;hpb=e4ff969a9868ecc25a85daab620f97227de8d493;p=tinc diff --git a/src/netutl.c b/src/netutl.c index 5b4badfd..f49178bd 100644 --- a/src/netutl.c +++ b/src/netutl.c @@ -35,6 +35,8 @@ #include "net.h" #include "netutl.h" +#include "system.h" + /* look for a connection associated with the given vpn ip, return its connection structure. @@ -46,10 +48,10 @@ conn_list_t *lookup_conn(ip_t ip) cp /* Exact match suggested by James B. MacLean */ for(p = conn_list; p != NULL; p = p->next) - if((ip == p->vpn_ip) && p->active) + if((ip == p->vpn_ip) && p->status.active) return p; for(p = conn_list; p != NULL; p = p->next) - if(((ip & p->vpn_mask) == (p->vpn_ip & p->vpn_mask)) && p->active) + if(((ip & p->vpn_mask) == (p->vpn_ip & p->vpn_mask)) && p->status.active) return p; cp return NULL; @@ -203,7 +205,7 @@ cp if(!(h = gethostbyname(p))) { - fprintf(stderr, "Error looking up `%s': %s\n", p, sys_errlist[h_errno]); + fprintf(stderr, _("Error looking up `%s': %s\n"), p, sys_errlist[h_errno]); return NULL; } @@ -227,7 +229,7 @@ void dump_conn_list(void) { conn_list_t *p; cp - syslog(LOG_DEBUG, "Connection list:"); + syslog(LOG_DEBUG, _("Connection list:")); for(p = conn_list; p != NULL; p = p->next) {