diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-01-27 13:32:51 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-01-27 13:32:51 +0100 |
commit | 16f194c75e05381628ae2b9468fb8004dec9e176 (patch) | |
tree | fe16599af39275ddff3d73781daf9cbf59a0fd25 /sapi/cli/php_cli.c | |
parent | 3f6779879cf7a293541ea10cd2852c9f45cbe73f (diff) | |
parent | 1cccbb8ff1339c44075e7dee8613d98dc8056f68 (diff) | |
download | php-git-16f194c75e05381628ae2b9468fb8004dec9e176.tar.gz |
Merge branch 'PHP-7.4'
* PHP-7.4:
Fix bug #78323: Code 0 is returned on invalid options
Diffstat (limited to 'sapi/cli/php_cli.c')
-rw-r--r-- | sapi/cli/php_cli.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c index d610c532c9..8cc570f132 100644 --- a/sapi/cli/php_cli.c +++ b/sapi/cli/php_cli.c @@ -1226,7 +1226,7 @@ int main(int argc, char *argv[]) setmode(_fileno(stderr), O_BINARY); /* make the stdio mode be binary */ #endif - while ((c = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 0, 2))!=-1) { + while ((c = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 1, 2))!=-1) { switch (c) { case 'c': if (ini_path_override) { @@ -1278,6 +1278,10 @@ int main(int argc, char *argv[]) case '?': php_cli_usage(argv[0]); goto out; + case PHP_GETOPT_INVALID_ARG: /* print usage on bad options, exit 1 */ + php_cli_usage(argv[0]); + exit_status = 1; + goto out; case 'i': case 'v': case 'm': sapi_module = &cli_sapi_module; goto exit_loop; |