summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorpixel <pixel>2003-03-09 18:39:07 +0000
committerpixel <pixel>2003-03-09 18:39:07 +0000
commit1be1181ed77ad20a012c939809e4a0c40ceb474a (patch)
tree2f110a1c960491405532fec2fe3b4dccc3eb9d42 /lib
parent07d61956b593e6bc973db3fa699db22a36a35dbc (diff)
Fixing stuff....
Diffstat (limited to 'lib')
-rw-r--r--lib/Handle.cc2
-rw-r--r--lib/Input.cc1
2 files changed, 1 insertions, 2 deletions
diff --git a/lib/Handle.cc b/lib/Handle.cc
index 279678d..e3ed198 100644
--- a/lib/Handle.cc
+++ b/lib/Handle.cc
@@ -197,7 +197,7 @@ void Handle::close() throw (GeneralException) {
if (err == Z_ERRNO) {
throw GeneralException(String(_("Error during close: ")) + strerror(errno));
} else {
- throw GeneralException(_("Error in zlib during gzclose."));
+ throw GeneralException(String(_("Error in zlib during gzclose: ")) + gzerror(zfile, &err));
}
}
} else {
diff --git a/lib/Input.cc b/lib/Input.cc
index e92f74d..9697913 100644
--- a/lib/Input.cc
+++ b/lib/Input.cc
@@ -419,4 +419,3 @@ Archive::FileTree * Archive::FileTree::Next() {
Archive::FileTree * Archive::FileTree::Prev() {
return prev;
}
->>>>>>> 1.24