From e2d6315c21a11ec49146492465cba42d33f155c0 Mon Sep 17 00:00:00 2001 From: Kees Monshouwer Date: Tue, 18 Feb 2014 22:39:19 +0100 Subject: [PATCH] fix compiler warning in lua-auth.cc --- pdns/lua-auth.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.47.2