From: Amos Jeffries Date: Mon, 23 Feb 2009 10:55:43 +0000 (+1300) Subject: Correct debugs output from tunnel comm error X-Git-Tag: SQUID_3_2_0_1~1168 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4af6d4888138d2babbeea20505ad26dc37caf1a6;p=thirdparty%2Fsquid.git Correct debugs output from tunnel comm error --- diff --git a/src/tunnel.cc b/src/tunnel.cc index 7048133277..d2937c44f4 100644 --- a/src/tunnel.cc +++ b/src/tunnel.cc @@ -263,8 +263,8 @@ TunnelStateData::Connection::error(int const xerrno) if (xerrno == COMM_ERR_CLOSING) return; - debugs(50, debugLevelForError(xerrno), "tunnelReadServer: FD " << fd() << - ": read failure: " << xstrerror()); + debugs(50, debugLevelForError(xerrno), "TunnelStateData::Connection::error: FD " << fd() << + ": read/write failure: " << xstrerror()); if (!ignoreErrno(xerrno)) comm_close(fd());