From: Ralph Covelli Date: Fri, 26 May 2017 03:14:35 +0000 (+0100) Subject: LoadArgsIntoSet() -> loadArgsIntoSet() X-Git-Tag: rec-4.1.0-alpha1~90^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F4965%2Fhead;p=thirdparty%2Fpdns.git LoadArgsIntoSet() -> loadArgsIntoSet() --- diff --git a/pdns/communicator.cc b/pdns/communicator.cc index dc12ff9961..06b92d2b91 100644 --- a/pdns/communicator.cc +++ b/pdns/communicator.cc @@ -55,7 +55,7 @@ void CommunicatorClass::retrievalLoopThread(void) } } -void CommunicatorClass::LoadArgsIntoSet(const char *listname, set &listset) +void CommunicatorClass::loadArgsIntoSet(const char *listname, set &listset) { vector parts; stringtok(parts, ::arg()[listname], ", \t"); @@ -96,9 +96,9 @@ void CommunicatorClass::go() exit(1); } - LoadArgsIntoSet("also-notify", d_alsoNotify); + loadArgsIntoSet("also-notify", d_alsoNotify); - LoadArgsIntoSet("forward-notify", PacketHandler::s_forwardNotify); + loadArgsIntoSet("forward-notify", PacketHandler::s_forwardNotify); } void CommunicatorClass::mainloop(void) diff --git a/pdns/communicator.hh b/pdns/communicator.hh index f4c543874f..8d842aa6d8 100644 --- a/pdns/communicator.hh +++ b/pdns/communicator.hh @@ -187,7 +187,7 @@ public: } bool notifyDomain(const DNSName &domain); private: - void LoadArgsIntoSet(const char *listname, set &listset); + void loadArgsIntoSet(const char *listname, set &listset); void makeNotifySockets(); void queueNotifyDomain(const DomainInfo& di, UeberBackend* B); int d_nsock4, d_nsock6;