diff options
author | Remi Collet <remi@remirepo.net> | 2024-08-21 14:46:07 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-08-21 14:46:07 +0200 |
commit | fe790d72439b0977cacfdceb885d6c31cc046c75 (patch) | |
tree | 0ef76829eacd80caacd76b6d45a15271e7239f03 /zip-php84.patch | |
parent | 78ebe68587baab747347b6cb12df735dd771f791 (diff) |
fix previous patch (for 8.0)
Diffstat (limited to 'zip-php84.patch')
-rw-r--r-- | zip-php84.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/zip-php84.patch b/zip-php84.patch index e50b9e0..90127ce 100644 --- a/zip-php84.patch +++ b/zip-php84.patch @@ -184,3 +184,29 @@ index 274ddf1..97194ba 100644 "zip", ext_functions, PHP_MINIT(zip), +From 6734db54ab2c9176e58ae456b794657374688fba Mon Sep 17 00:00:00 2001 +From: Remi Collet <remi@remirepo.net> +Date: Wed, 21 Aug 2024 14:43:10 +0200 +Subject: [PATCH] fix init + +--- + php8/php_zip.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/php8/php_zip.c b/php8/php_zip.c +index 93d633b..9b388a6 100644 +--- a/php8/php_zip.c ++++ b/php8/php_zip.c +@@ -1149,8 +1149,8 @@ static const zend_module_dep zip_deps[] = { + /* {{{ zip_module_entry */ + zend_module_entry zip_module_entry = { + STANDARD_MODULE_HEADER_EX, NULL, +- "zip", + zip_deps, ++ "zip", + ext_functions, + PHP_MINIT(zip), + PHP_MSHUTDOWN(zip), +-- +2.46.0 + |