From d824de38ce6a7525188da0213dba6b427f7118a9 Mon Sep 17 00:00:00 2001 From: James Taylor Date: Sat, 9 Jul 2016 09:38:42 +0000 Subject: [PATCH] resolver.cc: fix warnings with gcc on musl-libc resolver.cc makes an incorrect include directive of `poll.h`. The correct syntax for inclusion, according to `man 2 poll` is: `#include ` This commit prevents warnings from being displayed due to going through musl-libc's compatibility wrappers --- pdns/resolver.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/resolver.cc b/pdns/resolver.cc index 0220e15736..673cb9e78a 100644 --- a/pdns/resolver.cc +++ b/pdns/resolver.cc @@ -47,7 +47,7 @@ #include "dns_random.hh" -#include +#include #include "gss_context.hh" #include "namespaces.hh" -- 2.47.2