]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Oops, missed one thing I wanted to fix...
authorGarrett Rooney <rooneg@apache.org>
Sun, 5 Mar 2006 21:46:47 +0000 (21:46 +0000)
committerGarrett Rooney <rooneg@apache.org>
Sun, 5 Mar 2006 21:46:47 +0000 (21:46 +0000)
* support/fcgistarter.c
  (main): Give the usage message if we get a bogus port argument.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/fcgi-proxy-dev@383415 13f79535-47bb-0310-9956-ffa450edef68

support/fcgistarter.c

index 5f43ab149c7a73c6b06bf924855937c7d92b4727..8ee79a69accdb21fed082ad8e9d456dc7a7a4165 100644 (file)
@@ -97,7 +97,7 @@ int main(int argc, const char *argv[])
             case 'p':
                 port = atoi(arg);
                 if (! port) {
-                    /* XXX error message */
+                    usage();
                 }
                 break;