summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2002-06-12 19:34:56 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2002-06-12 19:34:56 +0000
commit010e521924d3ab9a5b1c7f315e1ccdf2271be548 (patch)
tree33e6968a4099c568b905505cc329e1e33743f722
parent9db1cc663f63b59e21bcab7e72193a59b4e5eb68 (diff)
downloadhttpd-010e521924d3ab9a5b1c7f315e1ccdf2271be548.tar.gz
-T hasn't been supported for some great while.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95618 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--server/main.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/server/main.c b/server/main.c
index 3648eec3f6..017fdf956d 100644
--- a/server/main.c
+++ b/server/main.c
@@ -316,7 +316,7 @@ static void usage(process_rec *process)
pad);
#endif
ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
- " %s [-v] [-V] [-h] [-l] [-L] [-t] [-T]", pad);
+ " %s [-v] [-V] [-h] [-l] [-L] [-t]", pad);
ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
"Options:");
@@ -382,11 +382,7 @@ static void usage(process_rec *process)
" -t -D DUMP_VHOSTS : show parsed settings (currently only "
"vhost settings)");
ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
- " -t : run syntax check for config files "
- "(with docroot check)");
- ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL,
- " -T : run syntax check for config files "
- "(without docroot check)");
+ " -t : run syntax check for config files");
destroy_and_exit_process(process, 1);
}