summaryrefslogtreecommitdiff
path: root/lib/Handle.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Handle.cc')
-rw-r--r--lib/Handle.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Handle.cc b/lib/Handle.cc
index b894fe2..e3ed198 100644
--- a/lib/Handle.cc
+++ b/lib/Handle.cc
@@ -197,10 +197,6 @@ void Handle::close() throw (GeneralException) {
if (err == Z_ERRNO) {
throw GeneralException(String(_("Error during close: ")) + strerror(errno));
} else {
-#ifdef IGNOREZDATAONCLOSE
- if (err == Z_DATA_ERROR)
- return;
-#endif
throw GeneralException(String(_("Error in zlib during gzclose: ")) + gzerror(zfile, &err));
}
}