fix XXX comment

--HG--
branch : HEAD
diff --git a/lib/zip_close.c b/lib/zip_close.c
index 5b588c3..28ca30e 100644
--- a/lib/zip_close.c
+++ b/lib/zip_close.c
@@ -1,5 +1,5 @@
 /*
-  $NiH: zip_close.c,v 1.45 2004/12/22 16:31:59 dillo Exp $
+  $NiH: zip_close.c,v 1.46 2004/12/22 18:33:45 wiz Exp $
 
   zip_close.c -- close zip archive and update changes
   Copyright (C) 1999, 2004 Dieter Baron and Thomas Klausner
@@ -211,7 +211,7 @@
     }
 
     if (fclose(tfp) != 0) {
-	/* XXX: handle fclose(tfp) error */
+	_zip_error_set(&za->error, ZIP_ER_CLOSE, errno);
 	remove(temp);
 	free(temp);
 	return -1;
diff --git a/lib/zip_open.c b/lib/zip_open.c
index c3be7bf..47cf15e 100644
--- a/lib/zip_open.c
+++ b/lib/zip_open.c
@@ -1,5 +1,5 @@
 /*
-  $NiH: zip_open.c,v 1.26 2004/12/22 15:49:19 wiz Exp $
+  $NiH: zip_open.c,v 1.27 2005/01/11 18:11:44 dillo Exp $
 
   zip_open.c -- open zip archive
   Copyright (C) 1999, 2003, 2004 Dieter Baron and Thomas Klausner
@@ -270,7 +270,7 @@
     cd->comment = NULL;
     cd->comment_len = _zip_read2(&cdp);
 
-    /* XXX: some zip files are broken; their internal comment length
+    /* some zip files are broken; their internal comment length
        says 0, but they have 1 or 2 comment bytes */
     if ((comlen-cd->comment_len < 0) || (comlen-cd->comment_len > 2)
 	|| (cd->nentry != i)) {