From: wessels <> Date: Sat, 25 Mar 2000 03:40:29 +0000 (+0000) Subject: DW: X-Git-Tag: SQUID_3_0_PRE1~2051 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b200c204c00cf9da3395d7e18c47a2248410d839;p=thirdparty%2Fsquid.git DW: - Need to assign return value of logfileOpen()!! --- diff --git a/src/store_log.cc b/src/store_log.cc index 6ef63a9606..23855e613a 100644 --- a/src/store_log.cc +++ b/src/store_log.cc @@ -1,6 +1,6 @@ /* - * $Id: store_log.cc,v 1.11 2000/03/14 23:07:51 wessels Exp $ + * $Id: store_log.cc,v 1.12 2000/03/24 20:40:29 wessels Exp $ * * DEBUG: section 20 Storage Manager Logging Functions * AUTHOR: Duane Wessels @@ -102,5 +102,5 @@ storeLogOpen(void) debug(20, 1) ("Store logging disabled\n"); return; } - logfileOpen(Config.Log.store, 0); + storelog = logfileOpen(Config.Log.store, 0); }