From: Willy Tarreau Date: Fri, 25 Nov 2022 10:10:19 +0000 (+0100) Subject: BUILD: halog: fix missing double-quote at end of help line X-Git-Tag: v2.7.0~32 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8be893d8bf451ad3581ac7d806cf01ece77f1b4d;p=thirdparty%2Fhaproxy.git BUILD: halog: fix missing double-quote at end of help line This will tell me to change the line format after testing :-( This was introduced with commit 286199c24 ("DOC: halog: explain how to use -ac and -ad in the help message"), no backport is needed unless it's backported as well. --- diff --git a/admin/halog/halog.c b/admin/halog/halog.c index 7ff4363870..f2b9dd7e70 100644 --- a/admin/halog/halog.c +++ b/admin/halog/halog.c @@ -206,12 +206,12 @@ 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" - " -hdr output captured header at the given :\n", - " -ac -ad :\n + " -hdr output captured header at the given :\n" + " -ac -ad :\n" " Report periods corresponding to a grouped accept of requests at\n" " the same millisecond after a delay of at least milliseconds with no\n" " incoming accept (used to spot network outages). Output format contains:\n" - " \n" + " \n", (int)SOURCE_FIELD, (int)SOURCE_FIELD ); exit(0);