From: adrian <> Date: Tue, 14 Nov 2000 16:55:49 +0000 (+0000) Subject: Merge in changes from 1.7.2.1 on SQUID_2_4: X-Git-Tag: SQUID_3_0_PRE1~1769 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ad82b7a636f1aefaa7ebf3ec9e867b455430653;p=thirdparty%2Fsquid.git Merge in changes from 1.7.2.1 on SQUID_2_4: DW: - I'm an idiot, got the debug level logic backwards .. we really should have done this the opposite way around to reduce the CVS repo size, but thats just me being anal. :) --- diff --git a/src/fs/diskd/diskd.cc b/src/fs/diskd/diskd.cc index 1f1ad73a17..e8bdc2e620 100644 --- a/src/fs/diskd/diskd.cc +++ b/src/fs/diskd/diskd.cc @@ -1,5 +1,5 @@ /* - * $Id: diskd.cc,v 1.7 2000/11/09 03:32:59 wessels Exp $ + * $Id: diskd.cc,v 1.8 2000/11/14 09:55:49 adrian Exp $ * * DEBUG: section -- External DISKD process implementation. * AUTHOR: Harvest Derived @@ -45,7 +45,7 @@ #include -#define DEBUG(LEVEL) if (LEVEL > DebugLevel) +#define DEBUG(LEVEL) if (LEVEL <= DebugLevel) typedef struct _file_state file_state;