]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUILD: halog: fix missing double-quote at end of help line
authorWilly Tarreau <w@1wt.eu>
Fri, 25 Nov 2022 10:10:19 +0000 (11:10 +0100)
committerWilly Tarreau <w@1wt.eu>
Fri, 25 Nov 2022 10:11:41 +0000 (11:11 +0100)
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.

admin/halog/halog.c

index 7ff43638709491789b3c322401a115538264c83d..f2b9dd7e70b61754ae515d19aa30f84371e213c7 100644 (file)
@@ -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 <block>:<field>\n",
-              " -ac <count> -ad <delay>:\n
+              " -hdr  output captured header at the given <block>:<field>\n"
+              " -ac <count> -ad <delay>:\n"
               "       Report periods corresponding to a grouped accept of <count> requests at\n"
               "       the same millisecond after a delay of at least <ad> milliseconds with no\n"
               "       incoming accept (used to spot network outages). Output format contains:\n"
-              "          <accept_date> <date_ms> <delta_ms from previous one> <nb_entries>\n"
+              "          <accept_date> <date_ms> <delta_ms from previous one> <nb_entries>\n",
               (int)SOURCE_FIELD, (int)SOURCE_FIELD
               );
        exit(0);