jani Thu Oct 25 10:01:31 2007 UTC Modified files: (Branch: PHP_5_3) /php-src/sapi/cgi cgi_main.c Log: MFH: ws http://cvs.php.net/viewvc.cgi/php-src/sapi/cgi/cgi_main.c?r1=1.267.2.15.2.50.2.5&r2=1.267.2.15.2.50.2.6&diff_format=u Index: php-src/sapi/cgi/cgi_main.c diff -u php-src/sapi/cgi/cgi_main.c:1.267.2.15.2.50.2.5 php-src/sapi/cgi/cgi_main.c:1.267.2.15.2.50.2.6 --- php-src/sapi/cgi/cgi_main.c:1.267.2.15.2.50.2.5 Thu Oct 25 05:39:06 2007 +++ php-src/sapi/cgi/cgi_main.c Thu Oct 25 10:01:30 2007 @@ -21,7 +21,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: cgi_main.c,v 1.267.2.15.2.50.2.5 2007/10/25 05:39:06 dmitry Exp $ */ +/* $Id: cgi_main.c,v 1.267.2.15.2.50.2.6 2007/10/25 10:01:30 jani Exp $ */ #include "php.h" #include "php_globals.h" @@ -760,7 +760,7 @@ " -v Version number\n" " -w Display source with stripped comments and whitespace.\n" " -z <file> Load Zend extension <file>.\n" - " -T <count> Measure execution time of script repeated <count> times.\n", + " -T <count> Measure execution time of script repeated <count> times.\n", prog, prog); } /* }}} */ @@ -1539,7 +1539,7 @@ while ((c = php_getopt(argc, argv, OPTIONS, &php_optarg, &php_optind, 1, 2)) != -1) { switch (c) { case 'T': - benchmark = 1; + benchmark = 1; repeats = atoi(php_optarg); gettimeofday(&start, NULL); break;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php