summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2002-07-29 16:47:23 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2002-07-29 16:47:23 +0000
commit1cbf083622825cb0aaa98dcae4dad738a37b77e4 (patch)
tree9c8200e649fd38a392c10bd890b05a833456f65c
parent16dacd1ad611f98bca67fc5e5ef16dce99346f17 (diff)
fix -u description in httpd -h: we don't chroot into DocumentRoot but
ServerRoot. noticed by "Aaron Yourk" <ayourk@srt.com>
-rw-r--r--usr.sbin/httpd/src/main/http_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/src/main/http_main.c b/usr.sbin/httpd/src/main/http_main.c
index 49e6e90b563..83c56aac71e 100644
--- a/usr.sbin/httpd/src/main/http_main.c
+++ b/usr.sbin/httpd/src/main/http_main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: http_main.c,v 1.20 2002/07/22 18:25:31 henning Exp $ */
+/* $OpenBSD: http_main.c,v 1.21 2002/07/29 16:47:22 henning Exp $ */
/* ====================================================================
* The Apache Software License, Version 1.1
@@ -1417,7 +1417,7 @@ static void usage(char *bin)
fprintf(stderr, " -T : run syntax check for config files (without docroot check)\n");
#ifndef WIN32
fprintf(stderr, " -F : run main process in foreground, for process supervisors\n");
- fprintf(stderr, " -u : Unsecure mode. Do not chroot into DocumentRoot.\n");
+ fprintf(stderr, " -u : Unsecure mode. Do not chroot into ServerRoot.\n");
#endif
#ifdef WIN32
fprintf(stderr, " -n name : name the Apache service for -k options below;\n");