From ccc0d6e32b60e7870fea58bd46935e81c91b1154 Mon Sep 17 00:00:00 2001 From: Greg Beaver Date: Sun, 13 Jan 2008 06:22:27 +0000 Subject: a few fixes: overwrite all my careful work in zipint_alias.h with zipint.h, so had to restore that. PHP_RAW_NAMED_FE() won't work, have to use ZEND_RAW_FENTRY --- ext/zip/php_zip.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/zip/php_zip.c') diff --git a/ext/zip/php_zip.c b/ext/zip/php_zip.c index 5ff8a2e85b..b75c6e1074 100644 --- a/ext/zip/php_zip.c +++ b/ext/zip/php_zip.c @@ -274,9 +274,9 @@ static char * php_zipobj_get_zip_comment(struct zip *za, int *len TSRMLS_DC) /* /* {{{ zend_function_entry */ static const zend_function_entry zip_functions[] = { - PHP_RAW_NAMED_FE("zip_open", zif_zip_open, NULL) - PHP_RAW_NAMED_FE("zip_close", zif_zip_close, NULL) - PHP_RAW_NAMED_FE("zip_read", zif_zip_read, NULL) + ZEND_RAW_FENTRY("zip_open", zif_zip_open, NULL, 0) + ZEND_RAW_FENTRY("zip_close", zif_zip_close, NULL, 0) + ZEND_RAW_FENTRY("zip_read", zif_zip_read, NULL, 0) PHP_FE(zip_entry_open, NULL) PHP_FE(zip_entry_close, NULL) PHP_FE(zip_entry_read, NULL) -- cgit v1.2.1