From 0a950a05005f94e56bd2a42b99a0961db86952db Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 30 Dec 2013 07:35:30 +0100 Subject: Sync with pecl/zip 1.12.4dev - update bunled libzip to 0.11.2 - expose zip_file_set_external_attributes + zip_file_get_external_attributes with new methods: ZipArchive::setExternalAttributesName ZipArchive::setExternalAttributesIndex ZipArchive::getExternalAttributesName ZipArchive::getExternalAttributesIndex --- ext/zip/lib/zip_string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/zip/lib/zip_string.c') diff --git a/ext/zip/lib/zip_string.c b/ext/zip/lib/zip_string.c index a2d5eb5d3f..4e8709b5f7 100644 --- a/ext/zip/lib/zip_string.c +++ b/ext/zip/lib/zip_string.c @@ -64,7 +64,7 @@ _zip_string_equal(const struct zip_string *a, const struct zip_string *b) if (a->length != b->length) return 0; - /* XXX: encoding */ + /* TODO: encoding */ return (memcmp(a->raw, b->raw, a->length) == 0); } -- cgit v1.2.1