]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Merge in changes from 1.7.2.1 on SQUID_2_4:
authoradrian <>
Tue, 14 Nov 2000 16:55:49 +0000 (16:55 +0000)
committeradrian <>
Tue, 14 Nov 2000 16:55:49 +0000 (16:55 +0000)
  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. :)

src/fs/diskd/diskd.cc

index 1f1ad73a17247fe44e668215cfed6ff48c770ab8..e8bdc2e6209ba116e515abe3b6d83efb38ca1699 100644 (file)
@@ -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 <assert.h>
 
 
-#define DEBUG(LEVEL) if (LEVEL > DebugLevel)
+#define DEBUG(LEVEL) if (LEVEL <= DebugLevel)
 
 typedef struct _file_state file_state;