From 249a547f373ed9b4fd421f67485fde2fb564cab8 Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Thu, 4 Jul 2024 11:19:15 +0200 Subject: [PATCH] CLEANUP: stconn: Fix a typo in comments for SE_ABRT_SRC_* Just a little typo: s/set bu/ set by/ --- include/haproxy/stconn-t.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/haproxy/stconn-t.h b/include/haproxy/stconn-t.h index c3468478e..244343dc1 100644 --- a/include/haproxy/stconn-t.h +++ b/include/haproxy/stconn-t.h @@ -276,10 +276,10 @@ struct stconn; #define SE_ABRT_SRC_MASK 0x0000001f #define SE_ABRT_SRC_MUX_PT 0x01 /* Code set by the PT mux */ -#define SE_ABRT_SRC_MUX_H1 0x02 /* Code set bu the H1 mux */ -#define SE_ABRT_SRC_MUX_H2 0x03 /* Code set bu the H2 mux */ -#define SE_ABRT_SRC_MUX_QUIC 0x04 /* Code set bu the QUIC/H3 mux */ -#define SE_ABRT_SRC_MUX_FCGI 0x05 /* Code set bu the FCGI mux */ +#define SE_ABRT_SRC_MUX_H1 0x02 /* Code set by the H1 mux */ +#define SE_ABRT_SRC_MUX_H2 0x03 /* Code set by the H2 mux */ +#define SE_ABRT_SRC_MUX_QUIC 0x04 /* Code set by the QUIC/H3 mux */ +#define SE_ABRT_SRC_MUX_FCGI 0x05 /* Code set by the FCGI mux */ struct se_abort_info { uint32_t info;