From: Garrett Rooney Date: Sun, 5 Mar 2006 21:46:47 +0000 (+0000) Subject: Oops, missed one thing I wanted to fix... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83a30c52e62d9fc1782628a169e9691cea97f162;p=thirdparty%2Fapache%2Fhttpd.git Oops, missed one thing I wanted to fix... * 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 --- diff --git a/support/fcgistarter.c b/support/fcgistarter.c index 5f43ab149c7..8ee79a69acc 100644 --- a/support/fcgistarter.c +++ b/support/fcgistarter.c @@ -97,7 +97,7 @@ int main(int argc, const char *argv[]) case 'p': port = atoi(arg); if (! port) { - /* XXX error message */ + usage(); } break;