From: Christian Hofstaedtler Date: Fri, 23 Aug 2013 17:39:04 +0000 (+0200) Subject: update LUABackend::setDomainMetadata signature X-Git-Tag: rec-3.6.0-rc1~506^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=63851c6;p=thirdparty%2Fpdns.git update LUABackend::setDomainMetadata signature Found by Coverity Scan. Compile-tested only. --- diff --git a/modules/luabackend/luabackend.hh b/modules/luabackend/luabackend.hh index 4f46d24ad1..f7057088ee 100644 --- a/modules/luabackend/luabackend.hh +++ b/modules/luabackend/luabackend.hh @@ -70,7 +70,7 @@ public: //! get a list of IP addresses that should also be notified for a domain void alsoNotifies(const string &domain, set *ips); bool getDomainMetadata(const string& name, const std::string& kind, std::vector& meta); - bool setDomainMetadata(const string& name, const std::string& kind, std::vector& meta); + bool setDomainMetadata(const string& name, const std::string& kind, const std::vector& meta); bool getDomainKeys(const string& name, unsigned int kind, std::vector& keys); bool removeDomainKey(const string& name, unsigned int id);