summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett Rooney <rooneg@apache.org>2006-03-05 21:46:47 +0000
committerGarrett Rooney <rooneg@apache.org>2006-03-05 21:46:47 +0000
commit83a30c52e62d9fc1782628a169e9691cea97f162 (patch)
tree281a9c1a8a2151e3e511824f2bf1caa046587a9e
parent1244039b4acc89c03566b9b61dae427cd488a896 (diff)
downloadhttpd-83a30c52e62d9fc1782628a169e9691cea97f162.tar.gz
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
-rw-r--r--support/fcgistarter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/fcgistarter.c b/support/fcgistarter.c
index 5f43ab149c..8ee79a69ac 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;