From: Oliver Dumschat Date: Sun, 13 Jul 2014 03:22:40 +0000 (-0600) Subject: Bug 4080: worker hangs when client identd is not responding X-Git-Tag: SQUID_3_4_7~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5458804236b38f78582dff71812bbed86799c30;p=thirdparty%2Fsquid.git Bug 4080: worker hangs when client identd is not responding --- diff --git a/src/ident/Ident.cc b/src/ident/Ident.cc index 3f15b8700b..028fa1b1d0 100644 --- a/src/ident/Ident.cc +++ b/src/ident/Ident.cc @@ -123,9 +123,9 @@ 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; }