diff options
author | Remi Collet <remi@remirepo.net> | 2019-10-24 08:20:00 +0200 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-10-24 08:20:00 +0200 |
commit | e5f40da8075b343c3211e09a092d2519d7d4952f (patch) | |
tree | 120563b810cb5662dd0e433c7d6070fe1aa0324f /598bf7f5d5f9c76fd003590083c98736eb7702ab.patch | |
parent | 936c7462fc412475b9277dd939ebf073ca410974 (diff) |
allow wildcards in ffi.preload
Diffstat (limited to '598bf7f5d5f9c76fd003590083c98736eb7702ab.patch')
-rw-r--r-- | 598bf7f5d5f9c76fd003590083c98736eb7702ab.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/598bf7f5d5f9c76fd003590083c98736eb7702ab.patch b/598bf7f5d5f9c76fd003590083c98736eb7702ab.patch deleted file mode 100644 index d7ac048..0000000 --- a/598bf7f5d5f9c76fd003590083c98736eb7702ab.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 598bf7f5d5f9c76fd003590083c98736eb7702ab Mon Sep 17 00:00:00 2001 -From: "Christoph M. Becker" <cmbecker69@gmx.de> -Date: Tue, 22 Oct 2019 17:53:34 +0200 -Subject: [PATCH] Fix typo - ---- - ext/ffi/ffi.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/ext/ffi/ffi.c b/ext/ffi/ffi.c -index 4b7144e11ccc..17e8a8409d1f 100644 ---- a/ext/ffi/ffi.c -+++ b/ext/ffi/ffi.c -@@ -3359,7 +3359,7 @@ ZEND_METHOD(FFI, load) /* {{{ */ - ZEND_PARSE_PARAMETERS_END(); - - if (CG(compiler_options) & ZEND_COMPILE_PRELOAD_IN_CHILD) { -- zend_throw_error(zend_ffi_exception_ce, "FFI::load() doesn't work in conjunction with \"opcache.pelaod_user\". Use \"ffi.preload\" instead."); -+ zend_throw_error(zend_ffi_exception_ce, "FFI::load() doesn't work in conjunction with \"opcache.preload_user\". Use \"ffi.preload\" instead."); - return; - } - |