]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
DEV: flags: fix "siet" shortcut name
authorWilly Tarreau <w@1wt.eu>
Fri, 27 May 2022 14:26:31 +0000 (16:26 +0200)
committerWilly Tarreau <w@1wt.eu>
Fri, 27 May 2022 17:33:35 +0000 (19:33 +0200)
It "si->et" was changed to "strm->et" by commit 09b3c5559 ("DEV: flags:
No longer dump SI flags") but this shortcut was missed.

dev/flags/flags.c

index b53df6c119d604eee7106e72002635d74223c817..5f00c6f3d2438c76a4cb41c6fa6d540c658e65b2 100644 (file)
@@ -21,7 +21,7 @@
 
 // command line names, must be in exact same order as the SHOW_AS_* flags above
 // so that show_as_words[i] matches flag 1U<<i.
-const char *show_as_words[] = { "ana", "chn", "conn", "sc", "siet", "strm", "task", "txn", "endp", };
+const char *show_as_words[] = { "ana", "chn", "conn", "sc", "stet", "strm", "task", "txn", "endp", };
 
 #define SHOW_FLAG(f,n)                                 \
        do {                                            \