]> git.ipfire.org Git - thirdparty/pdns.git/blobdiff - pdns/win32_dynlistener.cc
and the final bit of whitespace/tab cleanup
[thirdparty/pdns.git] / pdns / win32_dynlistener.cc
index 107c0cd99d4474d6ea528a1ff185cd5a1f3e4fe6..4222f036621352006431db733205f0c4c90c7cc6 100644 (file)
@@ -145,16 +145,16 @@ void DynListener::theListener()
       vector<string>parts;
       stringtok(parts,line," ");
       if(parts.empty()) {
-       sendLine("Empty line");
-       continue;
+        sendLine("Empty line");
+        continue;
       }
       parts[0] = toUpper( parts[0] ); 
       if(!d_funcdb[parts[0]]) {
-       if(d_restfunc) 
-         sendLine((*d_restfunc)(parts,d_ppid));
-       else
-         sendLine("Unknown command: '"+parts[0]+"'");
-       continue;
+        if(d_restfunc) 
+          sendLine((*d_restfunc)(parts,d_ppid));
+        else
+          sendLine("Unknown command: '"+parts[0]+"'");
+        continue;
       }
 
       sendLine((*d_funcdb[parts[0]])(parts,d_ppid));