X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnetutl.c;h=f49178bdfafbc1028314ffe145d02e61d44e51f6;hp=4d6364ec9f63c6f52fe8d3f09bc0f6cbd631599a;hb=9fd02ffcb0cacf3de26e876de5f30510bff137a3;hpb=61e71ab74ad9b5edb044b84ccf1111a33eb468cb diff --git a/src/netutl.c b/src/netutl.c index 4d6364ec..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. @@ -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) {