summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormickey <mickey@openbsd.org>1999-02-14 20:07:46 +0000
committermickey <mickey@openbsd.org>1999-02-14 20:07:46 +0000
commit5d02ce0ce2b7b192ead391aa73ae85632065066e (patch)
tree7536ee71b7520f9e826aac19841421e21f69c095
parentmake z_error be a panic (diff)
downloadwireguard-openbsd-5d02ce0ce2b7b192ead391aa73ae85632065066e.tar.xz
wireguard-openbsd-5d02ce0ce2b7b192ead391aa73ae85632065066e.zip
place a bin-patcheable z_verbose here for -DDEBUG
-rw-r--r--sys/lib/libsa/cread.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/lib/libsa/cread.c b/sys/lib/libsa/cread.c
index d75c3ec6e38..90bee49cfd3 100644
--- a/sys/lib/libsa/cread.c
+++ b/sys/lib/libsa/cread.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cread.c,v 1.7 1999/01/25 19:28:38 mickey Exp $ */
+/* $OpenBSD: cread.c,v 1.8 1999/02/14 20:07:46 mickey Exp $ */
/* $NetBSD: cread.c,v 1.2 1997/02/04 18:38:20 thorpej Exp $ */
/*
@@ -79,6 +79,10 @@ static struct sd {
int transparent; /* 1 if input file is not a .gz file */
} *ss[SOPEN_MAX];
+#ifdef DEBUG
+int z_verbose = 0;
+#endif
+
/*
* compression utilities
*/