aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tvbuff_zlib.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-12-16 08:59:01 +0000
committerGuy Harris <guy@alum.mit.edu>2015-12-16 08:59:07 +0000
commit6d60c4d4684c2c03a43f1b8720497348cf17d357 (patch)
tree31c4eeb27100d4d42d942b85a8178cb167cf91d8 /epan/tvbuff_zlib.c
parentbfe73e3ad7162830c222a5b0d73433a72324baa5 (diff)
Revert "Make zlib API constness-aware"
This reverts commit fb0246c6fd7cd34b820558f75eb48bba6326b768. That commit assumes that if you define Z_CONST, z_const will be defined; that is *not* the case with older versions of zlib, which don't define z_const under any circumstances. Change-Id: I6f9b7ea18922799b1aaf94dc2c63120128f2550a Reviewed-on: https://code.wireshark.org/review/12671 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/tvbuff_zlib.c')
-rw-r--r--epan/tvbuff_zlib.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/epan/tvbuff_zlib.c b/epan/tvbuff_zlib.c
index 218ff53cb2..c92a5d506d 100644
--- a/epan/tvbuff_zlib.c
+++ b/epan/tvbuff_zlib.c
@@ -28,7 +28,6 @@
#include <string.h>
#ifdef HAVE_LIBZ
-#define ZLIB_CONST
#include <zlib.h>
#endif