summaryrefslogtreecommitdiff
path: root/fcgiwrap.c
diff options
context:
space:
mode:
authorJordi Mallach <jordi@iti.upv.es>2010-05-25 22:21:39 +0200
committerW-Mark Kubacki <wmark@hurrikane.de>2010-05-25 22:21:39 +0200
commit21e729d25d8b80f92f154a61fa8ea2b0aa918629 (patch)
tree31d8bf28b9b7027b49d816d1affe282eada09279 /fcgiwrap.c
parentd16c4cfd02105cdfdd92e92183e3573eb9131c03 (diff)
downloadfcgiwrap-21e729d25d8b80f92f154a61fa8ea2b0aa918629.tar.xz
fcgiwrap-21e729d25d8b80f92f154a61fa8ea2b0aa918629.zip
nitpicks as described in today's email to Mark
Signed-off-by: W-Mark Kubacki <wmark@hurrikane.de>
Diffstat (limited to 'fcgiwrap.c')
-rw-r--r--fcgiwrap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fcgiwrap.c b/fcgiwrap.c
index 448475d..e030f91 100644
--- a/fcgiwrap.c
+++ b/fcgiwrap.c
@@ -495,7 +495,7 @@ static void handle_fcgi_request()
filename = get_cgi_filename();
inherit_environment();
if (!filename)
- error_403("Cannot get script name, is DOCUMENT_ROOT and SCRIPT_NAME set and is the script executable?", NULL);
+ error_403("Cannot get script name, are DOCUMENT_ROOT and SCRIPT_NAME set and is the script executable?", NULL);
last_slash = strrchr(filename, '/');
if (!last_slash)
@@ -629,9 +629,9 @@ int main(int argc, char **argv)
case 'h':
printf("Usage: %s [OPTION]\nInvokes CGI scripts as FCGI.\n\n"
"fcgiwrap version "FCGIWRAP_VERSION"\n\n"
- "options are:\n"
- " -c 1..x\t\tnumber of processes to prefork\n"
- " -h\t\t\tgive this help\n"
+ "Options are:\n"
+ " -c 1..x\t\tNumber of processes to prefork\n"
+ " -h\t\t\tShow this help message and exit\n"
"\nReport bugs to Grzegorz Nosek <root@localdomain.pl>.\n"
"fcgiwrap home page: <http://nginx.localdomain.pl/wiki/FcgiWrap>\n",
argv[0]