From 8315a525ca17ab55c6e32f1319c823e341781f92 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Sat, 28 Dec 2002 06:59:24 +0000 Subject: [PATCH] Fixed bug #21229 (missing 3rd argument to php_module_startup). --- sapi/roxen/roxen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapi/roxen/roxen.c b/sapi/roxen/roxen.c index 02c6d168b1..5dd9172ada 100644 --- a/sapi/roxen/roxen.c +++ b/sapi/roxen/roxen.c @@ -473,7 +473,7 @@ static zend_module_entry php_roxen_module = { static int php_roxen_startup(sapi_module_struct *sapi_module) { - if(php_module_startup(sapi_module, &php_roxen_module) == FAILURE) { + if(php_module_startup(sapi_module, &php_roxen_module, 1) == FAILURE) { return FAILURE; } else { return SUCCESS; -- 2.50.1