diff options
author | 2002-07-29 16:47:22 +0000 | |
---|---|---|
committer | 2002-07-29 16:47:22 +0000 | |
commit | 7f95202c40d38243e43afe027373f724c2bc8700 (patch) | |
tree | 93a5d9bedd1d08d98288384175586e8f208e3a65 | |
parent | Bunch of cleanups and one last bugfix that seems to make things work. (diff) | |
download | wireguard-openbsd-7f95202c40d38243e43afe027373f724c2bc8700.tar.xz wireguard-openbsd-7f95202c40d38243e43afe027373f724c2bc8700.zip |
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.c | 4 |
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"); |