From: Otto Moerbeek Date: Fri, 14 Jan 2022 14:11:48 +0000 (+0100) Subject: Fix compilation with !HAVE_IPCIPHER X-Git-Tag: auth-4.7.0-alpha1~64^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F11190%2Fhead;p=thirdparty%2Fpdns.git Fix compilation with !HAVE_IPCIPHER --- diff --git a/pdns/dnswasher.cc b/pdns/dnswasher.cc index 5a6b2001f5..0d5dd1c86c 100644 --- a/pdns/dnswasher.cc +++ b/pdns/dnswasher.cc @@ -38,16 +38,17 @@ otherwise, obfuscate the response IP address #include "config.h" #endif -#ifdef HAVE_IPCIPHER +#include "namespaces.hh" #include "statbag.hh" +StatBag S; + +#ifdef HAVE_IPCIPHER #include "dnspcap.hh" #include "iputils.hh" #include "ipcipher.hh" -#include "namespaces.hh" #include #include "base64.hh" -StatBag S; namespace po = boost::program_options; po::variables_map g_vm;