s/DEBUG/DEBUG_ZLIB/g
authormickey <mickey@openbsd.org>
Fri, 7 Feb 1997 13:26:31 +0000 (13:26 +0000)
committermickey <mickey@openbsd.org>
Fri, 7 Feb 1997 13:26:31 +0000 (13:26 +0000)
sys/lib/libz/infblock.c
sys/lib/libz/inftrees.c
sys/lib/libz/inftrees.h
sys/lib/libz/zutil.h

index cc2e674..a57122a 100644 (file)
@@ -110,7 +110,7 @@ uInt w;
 }
 
 
-#ifdef DEBUG
+#ifdef DEBUG_ZLIB
   extern uInt inflate_hufts;
 #endif
 int inflate_blocks(s, z, r)
@@ -309,7 +309,7 @@ int r;
         bl = 9;         /* must be <= 9 for lookahead assumptions */
         bd = 6;         /* must be <= 9 for lookahead assumptions */
         t = s->sub.trees.table;
-#ifdef DEBUG
+#ifdef DEBUG_ZLIB
       inflate_hufts = 0;
 #endif
         t = inflate_trees_dynamic(257 + (t & 0x1f), 1 + ((t >> 5) & 0x1f),
index 90205bd..39a9dd4 100644 (file)
@@ -91,7 +91,7 @@ local uInt cpdext[30] = { /* Extra bits for distance codes */
 #define BMAX 15         /* maximum bit length of any code */
 #define N_MAX 288       /* maximum number of codes in any set */
 
-#ifdef DEBUG
+#ifdef DEBUG_ZLIB
   uInt inflate_hufts;
 #endif
 
@@ -239,7 +239,7 @@ z_streamp zs;           /* for zalloc function */
             inflate_trees_free(u[0], zs);
           return Z_MEM_ERROR;   /* not enough memory */
         }
-#ifdef DEBUG
+#ifdef DEBUG_ZLIB
         inflate_hufts += z + 1;
 #endif
         *t = q + 1;             /* link to list for huft_free() */
index b06613d..1991804 100644 (file)
@@ -27,7 +27,7 @@ struct inflate_huft_s {
   } more;
 };
 
-#ifdef DEBUG
+#ifdef DEBUG_ZLIB
   extern uInt inflate_hufts;
 #endif
 
index 7e8e1f2..e171b98 100644 (file)
@@ -8,7 +8,7 @@
    subject to change. Applications should only use zlib.h.
  */
 
-/* $Id: zutil.h,v 1.1 1997/02/06 02:56:56 downsj Exp $ */
+/* $Id: zutil.h,v 1.2 1997/02/07 13:26:33 mickey Exp $ */
 
 #ifndef _Z_UTIL_H
 #define _Z_UTIL_H
@@ -168,7 +168,7 @@ extern const char *z_errmsg[10]; /* indexed by 2-zlib_error */
 #endif
 
 /* Diagnostic functions */
-#ifdef DEBUG
+#ifdef DEBUG_ZLIB
 #  include <stdio.h>
 #  ifndef verbose
 #    define verbose 0