From: Kees Monshouwer Date: Tue, 18 Feb 2014 21:39:19 +0000 (+0100) Subject: fix compiler warning in lua-auth.cc X-Git-Tag: rec-3.6.0-rc1~164^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F1292%2Fhead;p=thirdparty%2Fpdns.git fix compiler warning in lua-auth.cc --- diff --git a/pdns/lua-auth.cc b/pdns/lua-auth.cc index 1bd732faf5..9155ea18d1 100644 --- a/pdns/lua-auth.cc +++ b/pdns/lua-auth.cc @@ -10,7 +10,7 @@ AuthLua::AuthLua(const std::string &fname) DNSPacket* AuthLua::prequery(DNSPacket *p) { - return false; + return 0; } bool AuthLua::axfrfilter(const ComboAddress& remote, const string& zone, const DNSResourceRecord& in, vector& out)