]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix regression in rev.13156
authorAmos Jeffries <squid3@treenet.co.nz>
Sun, 3 Aug 2014 11:56:37 +0000 (05:56 -0600)
committerAmos Jeffries <squid3@treenet.co.nz>
Sun, 3 Aug 2014 11:56:37 +0000 (05:56 -0600)
src/ident/Ident.cc

index 028fa1b1d0ca0cdb12432579304161b6ae496c10..4d705eafb3ab51c60c35596d07e886e06f493e06 100644 (file)
@@ -123,7 +123,7 @@ Ident::ConnectDone(const Comm::ConnectionPointer &conn, comm_err_t status, int x
     IdentStateData *state = (IdentStateData *)data;
 
     if (status != COMM_OK) {
-        if (status == Comm::TIMEOUT)
+        if (status == COMM_TIMEOUT)
             debugs(30, 3, "IDENT connection timeout to " << state->conn->remote);
         Ident::identCallback(state, NULL);
         return;