]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Disable logging of the SSL user name for now. It's broken on nonpersistent
authorhno <>
Thu, 30 Aug 2007 20:17:40 +0000 (20:17 +0000)
committerhno <>
Thu, 30 Aug 2007 20:17:40 +0000 (20:17 +0000)
connections.

src/client_side.cc

index 9a997e6b4b2f560aaa10e08b9e79015d9e346662..43cf6c8a5d6f4dd875c9773415f3f21162a314e1 100644 (file)
@@ -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);