]> granicus.if.org Git - pdns/commitdiff
Language nits
authorChristian Hofstaedtler <christian@hofstaedtler.name>
Mon, 21 Oct 2013 08:39:23 +0000 (10:39 +0200)
committerChristian Hofstaedtler <christian@hofstaedtler.name>
Tue, 5 Nov 2013 09:15:20 +0000 (10:15 +0100)
pdns/arguments.cc
pdns/packethandler.cc
pdns/signingpipe.cc
pdns/syncres.cc

index 1985f444692df81bec104cce58ccce8dff77bf65..0d6f38e5993c46041815687f378a68580e2f588a 100644 (file)
@@ -350,7 +350,7 @@ void ArgvMap::parseOne(const string &arg, const string &parseOnly, bool lax)
       }
     }
     else if(!lax)
-      throw ArgException("Trying to set unexisting parameter '"+var+"'");
+      throw ArgException("Trying to set unknown parameter '"+var+"'");
   }
 }
 
index 98eb1accaf94e069c909a7f7923b05ecacdc76e8..afb0c60edfb29a4acf74a6f46dbfeecde2270154 100644 (file)
@@ -764,7 +764,7 @@ int PacketHandler::trySuperMasterSynchronous(DNSPacket *p)
     return RCode::ServFail;
   }
   Communicator.addSuckRequest(p->qdomain, p->getRemote());  
-  L<<Logger::Warning<<"Created new slave zone '"<<p->qdomain<<"' from supermaster "<<p->getRemote()<<", queued axfr"<<endl;
+  L<<Logger::Warning<<"Created new slave zone '"<<p->qdomain<<"' from supermaster "<<p->getRemote()<<", queued AXFR"<<endl;
   return RCode::NoError;
 }
 
index 7e0c1eae06981ad73ec2201be2436874ac6853fb..48c76c497d97733f6f1c991c26da757875565622 100644 (file)
@@ -52,7 +52,7 @@ struct StartHelperStruct
   int d_fd;
 };
 
-// used to launcht the new thread
+// used to launch the new thread
 void* ChunkedSigningPipe::helperWorker(void* p)
 try
 {
index acf476f53d8c4c9ba0fc846e3c238149c772f1b0..ece162b42856d519e0ab4982258fd4b9d236ea37 100644 (file)
@@ -449,7 +449,7 @@ int SyncRes::doResolve(const string &qname, const QType &qtype, vector<DNSResour
 }
 
 #if 0
-// for testing purpoises
+// for testing purposes
 static bool ipv6First(const ComboAddress& a, const ComboAddress& b)
 {
   return !(a.sin4.sin_family < a.sin4.sin_family);