X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnet.c;h=e2e2833c80a71af8c448861f92ae79e0e3274865;hp=144655fbd8b46c35abcdd80d1e1cf871b1e1304f;hb=9fa27097dd82e20299f5277ecb4efffb4a99669c;hpb=eb391c52eed46f3f03b404553df417851fc0cb90 diff --git a/src/net.c b/src/net.c index 144655fb..e2e2833c 100644 --- a/src/net.c +++ b/src/net.c @@ -241,7 +241,7 @@ static void check_dead_connections(void) if(c->last_ping_time + pingtimeout < now) { if(c->status.active) { if(c->status.pinged) { - ifdebug(CONNECTIONS) logger(LOG_INFO, _("%s (%s) didn't respond to PING in %d seconds"), + ifdebug(CONNECTIONS) logger(LOG_INFO, _("%s (%s) didn't respond to PING in %ld seconds"), c->name, c->hostname, now - c->last_ping_time); c->status.timeout = true; terminate_connection(c, true); @@ -270,7 +270,7 @@ static void check_dead_connections(void) if(c->outbuflen > 0 && c->last_flushed_time + pingtimeout < now) { if(c->status.active) { ifdebug(CONNECTIONS) logger(LOG_INFO, - _("%s (%s) could not flush for %d seconds (%d bytes remaining)"), + _("%s (%s) could not flush for %ld seconds (%d bytes remaining)"), c->name, c->hostname, now - c->last_flushed_time, c->outbuflen); c->status.timeout = true; terminate_connection(c, true);