From: Amos Jeffries Date: Sun, 3 Aug 2014 11:56:37 +0000 (-0600) Subject: Fix regression in rev.13156 X-Git-Tag: SQUID_3_4_7~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95ab54248d5188d30a298cc00eacb53a6a0c770c;p=thirdparty%2Fsquid.git Fix regression in rev.13156 --- diff --git a/src/ident/Ident.cc b/src/ident/Ident.cc index 028fa1b1d0..4d705eafb3 100644 --- a/src/ident/Ident.cc +++ b/src/ident/Ident.cc @@ -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;