just log the close if we're realy going to close.
authorWilfried Goesgens <dothebart@citadel.org>
Tue, 10 May 2011 22:05:46 +0000 (22:05 +0000)
committerWilfried Goesgens <dothebart@citadel.org>
Sun, 4 Sep 2011 20:15:34 +0000 (20:15 +0000)
citadel/context.c

index 527828898fd9e58cdb4ac4defb163dfcd86ce69c..fa2946cafcc43ec0f7596a646664aa18bce90d0d 100644 (file)
@@ -361,9 +361,9 @@ void RemoveContext (CitContext *con)
         * If the client is still connected, blow 'em away. 
         * if the socket is 0, its already gone or was never there.
         */
-       CtdlLogPrintf(CTDL_DEBUG, "Closing socket %d\n", con->client_socket);
        if (con->client_socket != 0)
        {
+               CtdlLogPrintf(CTDL_DEBUG, "Closing socket %d\n", con->client_socket);
                close(con->client_socket);
        }