From: Stefan Fritsch Date: Mon, 21 Jun 2010 20:34:44 +0000 (+0000) Subject: add -X to usage message X-Git-Tag: 2.3.7~146 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab778a09248a33a8b648faf28362195bc6dc3178;p=apache add -X to usage message git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@956684 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/main.c b/server/main.c index 65fac67f2d..84a8fe6bc0 100644 --- a/server/main.c +++ b/server/main.c @@ -361,7 +361,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] [-S]", pad); + " %s [-v] [-V] [-h] [-l] [-L] [-t] [-T] [-S] [-X]", pad); ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, "Options:"); @@ -435,7 +435,9 @@ static void usage(process_rec *process) ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, " -t : run syntax check for config files"); ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, - " -T : start without DocumentRoot(s) check"); + " -T : start without DocumentRoot(s) check"); + ap_log_error(APLOG_MARK, APLOG_STARTUP, 0, NULL, + " -X : debug mode (only one worker, do not detach)"); destroy_and_exit_process(process, 1); }