From: hno <> Date: Thu, 30 Aug 2007 20:17:40 +0000 (+0000) Subject: Disable logging of the SSL user name for now. It's broken on nonpersistent X-Git-Tag: SQUID_3_0_PRE7~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2ea1afadafea624cfd42d9a3d832dc8736ce8da5;p=thirdparty%2Fsquid.git Disable logging of the SSL user name for now. It's broken on nonpersistent connections. --- diff --git a/src/client_side.cc b/src/client_side.cc index 9a997e6b4b..43cf6c8a5d 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.762 2007/08/30 13:50:24 hno Exp $ + * $Id: client_side.cc,v 1.763 2007/08/30 14:17:40 hno Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -508,8 +508,11 @@ ClientHttpRequest::logRequest() if (getConn() != NULL && getConn()->rfc931[0]) al.cache.rfc931 = getConn()->rfc931; -#if USE_SSL +#if USE_SSL && 0 + /* This is broken. Fails if the connection has been closed. Needs + * to snarf the ssl details some place earlier.. + */ if (getConn() != NULL) al.cache.ssluser = sslGetUserEmail(fd_table[getConn()->fd].ssl);