summaryrefslogtreecommitdiff
path: root/sapi/phpdbg
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2020-05-19 16:01:48 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2020-05-19 16:01:48 +0200
commit5211ddce0e90b4273a492b9d4b045ac71286f35f (patch)
tree426aeb4fa9ef1a915ae5f7f6a5cb04f41ec2867b /sapi/phpdbg
parent6faa08f41cddfcf8d6092c423de57effcd27a1c9 (diff)
parent6a9db9573e58675f0c38f5da18fbc1b1a1f678d4 (diff)
downloadphp-git-5211ddce0e90b4273a492b9d4b045ac71286f35f.tar.gz
Merge branch 'PHP-7.4'
* PHP-7.4: Fix INI setting member name
Diffstat (limited to 'sapi/phpdbg')
-rw-r--r--sapi/phpdbg/phpdbg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c
index 3116e45045..ee2483c1fb 100644
--- a/sapi/phpdbg/phpdbg.c
+++ b/sapi/phpdbg/phpdbg.c
@@ -70,7 +70,7 @@ static PHP_INI_MH(OnUpdateEol)
PHP_INI_BEGIN()
STD_PHP_INI_ENTRY("phpdbg.path", "", PHP_INI_SYSTEM | PHP_INI_PERDIR, OnUpdateString, socket_path, zend_phpdbg_globals, phpdbg_globals)
- STD_PHP_INI_ENTRY("phpdbg.eol", "2", PHP_INI_ALL, OnUpdateEol, socket_path, zend_phpdbg_globals, phpdbg_globals)
+ STD_PHP_INI_ENTRY("phpdbg.eol", "2", PHP_INI_ALL, OnUpdateEol, eol, zend_phpdbg_globals, phpdbg_globals)
PHP_INI_END()
static zend_bool phpdbg_booted = 0;