diff options
author | Pierre Joye <pajoye@php.net> | 2008-08-08 16:05:38 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2008-08-08 16:05:38 +0000 |
commit | 6fb114f1d5a6013ef7cde20e296a228ead10aabd (patch) | |
tree | e9c77b8c0219bf667f7af5964ba60558470d0a6a /ext/zip/php_zip.c | |
parent | ed2abda5dfe55d9a0e4b0294cfac838d9e398a82 (diff) | |
download | php-git-6fb114f1d5a6013ef7cde20e296a228ead10aabd.tar.gz |
- MFH: constify zend_function_entry and update phpinfo
Diffstat (limited to 'ext/zip/php_zip.c')
-rw-r--r-- | ext/zip/php_zip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c index 5fb0a253e3..79ac46df2b 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -2482,7 +2482,7 @@ static ZIPARCHIVE_METHOD(getStream) /* }}} */ /* {{{ ze_zip_object_class_functions */ -static zend_function_entry zip_class_functions[] = { +static const zend_function_entry zip_class_functions[] = { ZIPARCHIVE_ME(open, NULL, ZEND_ACC_PUBLIC) ZIPARCHIVE_ME(close, NULL, ZEND_ACC_PUBLIC) ZIPARCHIVE_ME(getStatusString, NULL, ZEND_ACC_PUBLIC) @@ -2621,7 +2621,7 @@ static PHP_MINFO_FUNCTION(zip) php_info_print_table_row(2, "Zip", "enabled"); php_info_print_table_row(2, "Extension Version","$Id$"); php_info_print_table_row(2, "Zip version", PHP_ZIP_VERSION_STRING); - php_info_print_table_row(2, "Libzip version", "0.7.1"); + php_info_print_table_row(2, "Libzip version", "0.9.0"); php_info_print_table_end(); } |