From 13f0e1a76d73640649fd8040a14b245bda057f94 Mon Sep 17 00:00:00 2001 From: Tim Duesterhus Date: Thu, 28 Oct 2021 15:55:49 +0200 Subject: [PATCH] CLEANUP: halog: Use consistent indentation in help() Consistently use 1 Tab per line. (cherry picked from commit e0992584b9c21018dffad1fef211be6493bf7200) Signed-off-by: Willy Tarreau (cherry picked from commit aefb6301ee051717442315af46be53f8c8f39e75) Signed-off-by: Christopher Faulet --- contrib/halog/halog.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/halog/halog.c b/contrib/halog/halog.c index 89590cf..47f10a7 100644 --- a/contrib/halog/halog.c +++ b/contrib/halog/halog.c @@ -181,10 +181,10 @@ void help() " -v invert the input filtering condition\n" " -q don't report errors/warnings\n" " -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" + " -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" " -query preserve the query string for per-URL (-u*) statistics\n" - "\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" " -pct output connect and response times percentiles\n" @@ -199,7 +199,7 @@ void help() " -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", - SOURCE_FIELD,SOURCE_FIELD + SOURCE_FIELD,SOURCE_FIELD ); exit(0); } -- 1.7.10.4