]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Fix debug message "Client ... is closing connection"
authorAlexander Barton <alex@barton.de>
Sat, 1 Aug 2015 13:14:23 +0000 (15:14 +0200)
committerAlexander Barton <alex@barton.de>
Sat, 1 Aug 2015 13:14:23 +0000 (15:14 +0200)
It should be "host:port"!

src/ngircd/conn.c

index 6b3b51eaf5c10dc6b8555d8a99b53dee3b178a79..edcd868efba8b30a6113897b6f94df18db18b6b7 100644 (file)
@@ -1583,7 +1583,7 @@ Read_Request( CONN_ID Idx )
        if (len == 0) {
                LogDebug("Client \"%s:%u\" is closing connection %d ...",
                         My_Connections[Idx].host,
        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;
        }
                Conn_Close(Idx, NULL, "Client closed connection", false);
                return;
        }