From 0d0cdae84f3f5886860f9e7fa68b17bbd3b0c2d7 Mon Sep 17 00:00:00 2001 From: DL6ER Date: Thu, 7 Dec 2023 17:11:10 +0100 Subject: [PATCH] Fix missing declaration Signed-off-by: DL6ER --- src/dnsmasq/cache.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dnsmasq/cache.c b/src/dnsmasq/cache.c index 133737da..d2a50185 100644 --- a/src/dnsmasq/cache.c +++ b/src/dnsmasq/cache.c @@ -15,6 +15,7 @@ */ #include "dnsmasq.h" +#include "dnsmasq_interface.h" #include "webserver/webserver.h" static struct crec *cache_head = NULL, *cache_tail = NULL, **hash_table = NULL;