From: James Taylor Date: Sat, 9 Jul 2016 09:38:42 +0000 (+0000) Subject: resolver.cc: fix warnings with gcc on musl-libc X-Git-Tag: auth-4.0.1~20^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d824de38ce6a7525188da0213dba6b427f7118a9;p=thirdparty%2Fpdns.git 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 --- 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"