BUILD: listener: include proxy.h from listener.c
authorWilly Tarreau <w@1wt.eu>
Sat, 8 May 2021 18:30:37 +0000 (20:30 +0200)
committerWilly Tarreau <w@1wt.eu>
Sat, 8 May 2021 18:35:39 +0000 (20:35 +0200)
Many proxy functions are called there but the include was missing and
inherited via cfgparse.h.

src/listener.c

index 226b629..8031c75 100644 (file)
@@ -28,8 +28,8 @@
 #include <haproxy/list.h>
 #include <haproxy/listener.h>
 #include <haproxy/log.h>
-#include <haproxy/protocol-t.h>
 #include <haproxy/protocol.h>
+#include <haproxy/proxy.h>
 #include <haproxy/sample.h>
 #include <haproxy/stream.h>
 #include <haproxy/task.h>