From: Alexander Barton Date: Sat, 1 Aug 2015 13:14:23 +0000 (+0200) Subject: Fix debug message "Client ... is closing connection" X-Git-Tag: rel-23-rc1~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0083fe177f727af6ab43e190e3bea8a94555348e;p=ngircd Fix debug message "Client ... is closing connection" It should be "host:port"! --- diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index 6b3b51ea..edcd868e 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -1583,7 +1583,7 @@ Read_Request( CONN_ID Idx ) if (len == 0) { LogDebug("Client \"%s:%u\" is closing connection %d ...", My_Connections[Idx].host, - ng_ipaddr_tostr(&My_Connections[Idx].addr), Idx); + ng_ipaddr_getport(&My_Connections[Idx].addr), Idx); Conn_Close(Idx, NULL, "Client closed connection", false); return; }