diff options
| author | Remi Collet <remi@php.net> | 2013-12-30 07:38:45 +0100 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2013-12-30 07:38:45 +0100 |
| commit | 764190c1d6ccf3d4ae2cc54aacb465ccff49d9cc (patch) | |
| tree | 2f5c62c9c4220c744eb3de86efb306cf71639e54 /ext/zip/lib/zip_string.c | |
| parent | 6b343434796f82ba6cb829f981c8ce68a82bb52c (diff) | |
| parent | 0a950a05005f94e56bd2a42b99a0961db86952db (diff) | |
| download | php-git-764190c1d6ccf3d4ae2cc54aacb465ccff49d9cc.tar.gz | |
Merge branch 'PHP-5.6'
* PHP-5.6:
Sync with pecl/zip 1.12.4dev
Diffstat (limited to 'ext/zip/lib/zip_string.c')
| -rw-r--r-- | ext/zip/lib/zip_string.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |
