]> granicus.if.org Git - php/commitdiff
- Fix php-milter sample usage (-r option doesn't exists here)
authorFelipe Pena <felipe@php.net>
Mon, 8 Mar 2010 22:58:31 +0000 (22:58 +0000)
committerFelipe Pena <felipe@php.net>
Mon, 8 Mar 2010 22:58:31 +0000 (22:58 +0000)
sapi/milter/php_milter.c

index 8679e25d31e1dfb278069afa22bf246d728b95c9..6c07c018e2cba0941972acaff7bc32c81a96ce5b 100644 (file)
@@ -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);
 }
 /* }}} */