From 42b9b26e458a32a54e0b640f9428a35fecd48ab5 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Thu, 17 Mar 2005 07:31:22 +0000 Subject: [PATCH] - ZTS fixes #- Andrei, it would be nice if you could test ZTS builds too before you # commit... --- sapi/cli/php_cli.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index be00a4c14e..aab039a8f6 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -395,7 +395,7 @@ static void php_cli_usage(char *argv0) } /* }}} */ -static void define_command_line_ini_entry(char *arg) +static void define_command_line_ini_entry(char *arg TSRMLS_DC) { char *name, *value; @@ -661,7 +661,7 @@ int main(int argc, char *argv[]) switch (c) { case 'd': /* define ini entries on command line */ - define_command_line_ini_entry(php_optarg); + define_command_line_ini_entry(php_optarg TSRMLS_CC); break; case 'h': /* help & quit */ -- 2.40.0