From 4fe0cca305f0393d59bace932c73d3b4df1fe140 Mon Sep 17 00:00:00 2001 From: Aurelien DARRAGON Date: Mon, 4 Dec 2023 16:02:14 +0100 Subject: [PATCH] CLEANUP: resolvers: remove duplicate func prototype dns_dgram_init() function prototype was found in both resolvers and dns header files, but it should belong to the dns header file, so the duplicate entry was simply removed. --- include/haproxy/resolvers.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/haproxy/resolvers.h b/include/haproxy/resolvers.h index 5d4c7445b..70dd0978a 100644 --- a/include/haproxy/resolvers.h +++ b/include/haproxy/resolvers.h @@ -60,7 +60,6 @@ int stats_dump_resolvers(struct stconn *sc, struct list *stat_modules); void resolv_stats_clear_counters(int clrall, struct list *stat_modules); int resolv_allocate_counters(struct list *stat_modules); -int dns_dgram_init(struct dns_nameserver *ns, struct sockaddr_storage *sk); int resolvers_create_default(); #endif // _HAPROXY_RESOLVER_H