summaryrefslogtreecommitdiff
path: root/sapi/milter
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2010-03-08 22:58:31 +0000
committerFelipe Pena <felipe@php.net>2010-03-08 22:58:31 +0000
commit9186e478fa8f9b620c50f208676448163cea1b5f (patch)
tree61a5e15659a670de7ca2a965e2434c72c04d2075 /sapi/milter
parent6a759c0692169eddaa40f99887673605a28707b3 (diff)
downloadphp-git-9186e478fa8f9b620c50f208676448163cea1b5f.tar.gz
- Fix php-milter sample usage (-r option doesn't exists here)
Diffstat (limited to 'sapi/milter')
-rw-r--r--sapi/milter/php_milter.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sapi/milter/php_milter.c b/sapi/milter/php_milter.c
index 8679e25d31..6c07c018e2 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);
}
/* }}} */