]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUILD: quic: global.h is needed in cfgparse-quic
authorWilly Tarreau <w@1wt.eu>
Thu, 24 Nov 2022 07:28:43 +0000 (08:28 +0100)
committerWilly Tarreau <w@1wt.eu>
Thu, 24 Nov 2022 07:30:48 +0000 (08:30 +0100)
cfgparse-quic accesses some members of the "global" struct but only
includes global-t.h. It actually used to work via tools.h due to a
long dependency chain that brought it, but it will be fixed and will
break cfgparse-quic, so let's fix it first.

src/cfgparse-quic.c

index ee23dc8e1c3b39e09ee18d8b15e2cce5350fb9bd..8be054512b849724b0d9c434c1db610411bcbecc 100644 (file)
@@ -3,7 +3,7 @@
 #include <haproxy/api.h>
 #include <haproxy/cfgparse.h>
 #include <haproxy/errors.h>
-#include <haproxy/global-t.h>
+#include <haproxy/global.h>
 #include <haproxy/listener.h>
 #include <haproxy/proxy-t.h>
 #include <haproxy/quic_cc-t.h>