]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
small formatting fix
authorRalph Covelli <rcovelli@he.net>
Fri, 12 May 2017 04:51:55 +0000 (05:51 +0100)
committerRalph Covelli <rcovelli@he.net>
Fri, 12 May 2017 04:51:55 +0000 (05:51 +0100)
pdns/communicator.cc

index 6958a8ef3afd5a2e1dc6ce79e7c81d9404bdb6a0..7cd6955d86457e036ce7badf5d6c6966246afdda 100644 (file)
@@ -37,7 +37,7 @@
 #include "arguments.hh"
 #include "packetcache.hh"
 
-#define CommunicatorLoadArgsIntoSet(listname,listset) do {                                 \
+#define CommunicatorLoadArgsIntoSet(listname, listset) do {                                \
   vector<string> parts;                                                                    \
   stringtok(parts, ::arg()[(listname)], ", \t");                                           \
   for (vector<string>::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)