From: wessels <> Date: Sun, 4 Mar 2001 07:50:26 +0000 (+0000) Subject: Forgot to assign the return value of logfileOpen() to useragentlog. X-Git-Tag: SQUID_3_0_PRE1~1579 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e6e0bcc8bf5b74cce576147764e10cb5a161885f;p=thirdparty%2Fsquid.git Forgot to assign the return value of logfileOpen() to useragentlog. --- diff --git a/src/useragent.cc b/src/useragent.cc index 2570715e4d..c6bcc7a364 100644 --- a/src/useragent.cc +++ b/src/useragent.cc @@ -1,6 +1,6 @@ /* - * $Id: useragent.cc,v 1.23 2001/01/12 00:37:23 wessels Exp $ + * $Id: useragent.cc,v 1.24 2001/03/04 00:50:26 wessels Exp $ * * DEBUG: section 40 User-Agent logging * AUTHOR: Joe Ramey @@ -48,7 +48,7 @@ useragentOpenLog(void) debug(40, 1) ("User-Agent logging is disabled.\n"); return; } - logfileOpen(Config.Log.useragent, 0, 1); + useragentlog = logfileOpen(Config.Log.useragent, 0, 1); #endif }