From 42a50d419f709b93fbd124f8ba6e0041009e4f62 Mon Sep 17 00:00:00 2001 From: Guillaume Nault Date: Wed, 24 Oct 2018 16:36:03 +0200 Subject: [PATCH] libnetlink: make ipset.h self-contained We need to include to define 'in_addr_t'. Signed-off-by: Guillaume Nault --- accel-pppd/libnetlink/ipset.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/accel-pppd/libnetlink/ipset.h b/accel-pppd/libnetlink/ipset.h index cd5523d..7121eaa 100644 --- a/accel-pppd/libnetlink/ipset.h +++ b/accel-pppd/libnetlink/ipset.h @@ -1,6 +1,8 @@ #ifndef __IPSET_H #define __IPSET_H +#include + int ipset_add(const char *name, in_addr_t addr); int ipset_del(const char *name, in_addr_t addr); int ipset_flush(const char *name); -- GitLab