]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix IDENT result in rev.13483
authorAmos Jeffries <squid3@treenet.co.nz>
Sun, 13 Jul 2014 03:21:04 +0000 (21:21 -0600)
committerAmos Jeffries <squid3@treenet.co.nz>
Sun, 13 Jul 2014 03:21:04 +0000 (21:21 -0600)
src/ident/Ident.cc

index da4a59e667075c74d9a88a4db404c73b2fffcf60..7bda568140d1ba8eb700fcad5c44873d3462dee7 100644 (file)
@@ -126,8 +126,7 @@ Ident::ConnectDone(const Comm::ConnectionPointer &conn, Comm::Flag status, int x
     if (status != Comm::OK) {
         if (status == Comm::TIMEOUT)
             debugs(30, 3, "IDENT connection timeout to " << state->conn->remote);
-        static char result[2] = "\0";
-        Ident::identCallback(state, result);
+        Ident::identCallback(state, NULL);
         return;
     }