From: Ralph Covelli Date: Fri, 12 May 2017 04:51:55 +0000 (+0100) Subject: small formatting fix X-Git-Tag: rec-4.1.0-alpha1~90^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=138c4509d1bcee5a24466923272c912231e794ed;p=thirdparty%2Fpdns.git small formatting fix --- diff --git a/pdns/communicator.cc b/pdns/communicator.cc index 6958a8ef3a..7cd6955d86 100644 --- a/pdns/communicator.cc +++ b/pdns/communicator.cc @@ -37,7 +37,7 @@ #include "arguments.hh" #include "packetcache.hh" -#define CommunicatorLoadArgsIntoSet(listname,listset) do { \ +#define CommunicatorLoadArgsIntoSet(listname, listset) do { \ vector parts; \ stringtok(parts, ::arg()[(listname)], ", \t"); \ for (vector::const_iterator iter = parts.begin(); iter != parts.end(); ++iter) { \ @@ -95,9 +95,9 @@ void CommunicatorClass::go() exit(1); } - CommunicatorLoadArgsIntoSet("also-notify",d_alsoNotify); + CommunicatorLoadArgsIntoSet("also-notify", d_alsoNotify); - CommunicatorLoadArgsIntoSet("forward-notify",PacketHandler::s_forwardNotify); + CommunicatorLoadArgsIntoSet("forward-notify", PacketHandler::s_forwardNotify); } void CommunicatorClass::mainloop(void)