From 0083fe177f727af6ab43e190e3bea8a94555348e Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Sat, 1 Aug 2015 15:14:23 +0200 Subject: [PATCH] Fix debug message "Client ... is closing connection" It should be "host:port"! --- src/ngircd/conn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2