felipe                                   Mon, 08 Mar 2010 22:58:31 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=295977

Log:
- Fix php-milter sample usage (-r option doesn't exists here)

Changed paths:
    U   php/php-src/branches/PHP_5_2/sapi/milter/php_milter.c
    U   php/php-src/branches/PHP_5_3/sapi/milter/php_milter.c
    U   php/php-src/trunk/sapi/milter/php_milter.c

Modified: php/php-src/branches/PHP_5_2/sapi/milter/php_milter.c
===================================================================
--- php/php-src/branches/PHP_5_2/sapi/milter/php_milter.c       2010-03-08 
22:33:55 UTC (rev 295976)
+++ php/php-src/branches/PHP_5_2/sapi/milter/php_milter.c       2010-03-08 
22:58:31 UTC (rev 295977)
@@ -896,7 +896,6 @@
        }

        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"
@@ -912,7 +911,7 @@
                                "  -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);
 }
 /* }}} */


Modified: php/php-src/branches/PHP_5_3/sapi/milter/php_milter.c
===================================================================
--- php/php-src/branches/PHP_5_3/sapi/milter/php_milter.c       2010-03-08 
22:33:55 UTC (rev 295976)
+++ php/php-src/branches/PHP_5_3/sapi/milter/php_milter.c       2010-03-08 
22:58:31 UTC (rev 295977)
@@ -939,7 +939,6 @@
        }

        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 @@
                                "  -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);
 }
 /* }}} */


Modified: php/php-src/trunk/sapi/milter/php_milter.c
===================================================================
--- php/php-src/trunk/sapi/milter/php_milter.c  2010-03-08 22:33:55 UTC (rev 
295976)
+++ php/php-src/trunk/sapi/milter/php_milter.c  2010-03-08 22:58:31 UTC (rev 
295977)
@@ -939,7 +939,6 @@
        }

        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 @@
                                "  -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);
 }
 /* }}} */


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to