CLEANUP: halog: Use consistent indentation in help()

Consistently use 1 Tab per line.
This commit is contained in:
Tim Duesterhus 2021-10-28 15:55:49 +02:00 committed by Willy Tarreau
parent 385338b30b
commit e0992584b9
1 changed files with 4 additions and 4 deletions

View File

@ -181,10 +181,10 @@ void help()
" -v invert the input filtering condition\n"
" -q don't report errors/warnings\n"
" -m <lines> limit output to the first <lines> lines\n"
" -s <skip_n_fields> 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> 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);
}