From a0635f8d1030d52b19bbe89cefabb74151af34f2 Mon Sep 17 00:00:00 2001 From: Tim Duesterhus Date: Thu, 28 Oct 2021 15:53:37 +0200 Subject: [PATCH] DOC: halog: Move the `-qry` parameter into the correct section in help text This is not an output filter, but instead a modifier. Specifically "only one may be used at a time" is not true. see 24b8d693b202b01b649f64ed878d8f9dd1b242e4 --- admin/halog/halog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/halog/halog.c b/admin/halog/halog.c index 2d6c17f45..76e68cebf 100644 --- a/admin/halog/halog.c +++ b/admin/halog/halog.c @@ -183,6 +183,7 @@ void help() " -m limit output to the first lines\n" " -s skip n fields from the beginning of a line (default %d)\n" " you can also use -n to start from earlier then field %d\n" + " -qry preserve the query string for per-URL (-u*) statistics\n" "\n" "Output filters - only one may be used at a time\n" " -c only report the number of lines that would have been printed\n" @@ -197,8 +198,7 @@ void help() " -u : by URL, -uc : request count, -ue : error count\n" " -ua : average response time, -ut : average total time\n" " -uao, -uto: average times computed on valid ('OK') requests\n" - " -uba, -ubt: average bytes returned, total bytes returned\n" - " -qry preserve the query string for per-URL statistics\n", + " -uba, -ubt: average bytes returned, total bytes returned\n", SOURCE_FIELD,SOURCE_FIELD ); exit(0);