diff options
author | Felipe Pena <felipe@php.net> | 2010-03-08 22:58:31 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2010-03-08 22:58:31 +0000 |
commit | b2230b0bf5030f53fdffdfbcb3ce050909d836c1 (patch) | |
tree | 2a976511b8274210a36506824962c50e48dcbc05 | |
parent | 9e81928a98ea17053c560a91a8ddf7e5b33a7454 (diff) | |
download | php-git-b2230b0bf5030f53fdffdfbcb3ce050909d836c1.tar.gz |
- Fix php-milter sample usage (-r option doesn't exists here)
-rw-r--r-- | sapi/milter/php_milter.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sapi/milter/php_milter.c b/sapi/milter/php_milter.c index db27d0dfaf..b40406e4a3 100644 --- a/sapi/milter/php_milter.c +++ b/sapi/milter/php_milter.c @@ -939,7 +939,6 @@ static void php_milter_usage(char *argv0) } printf( "Usage: %s [options] [-f] <file> [args...]\n" - " %s [options] -r <code> [args...]\n" " %s [options] [-- args...]\n" " -a Run interactively\n" " -c <path>|<file> Look for php.ini file in this directory\n" @@ -955,7 +954,7 @@ static void php_milter_usage(char *argv0) " -z <file> Load Zend extension <file>.\n" " args... Arguments passed to script. Use -- args when first argument \n" " starts with - or script is read from stdin\n" - , prog, prog, prog); + , prog, prog); } /* }}} */ |