]> granicus.if.org Git - pdns/commitdiff
fix typos
authorPeter van Dijk <peter.van.dijk@powerdns.com>
Tue, 2 Oct 2018 13:01:11 +0000 (15:01 +0200)
committerPieter Lexis <pieter.lexis@powerdns.com>
Tue, 6 Nov 2018 12:12:26 +0000 (13:12 +0100)
pdns/ixfrdist.cc

index bf7f43c897304891382c0e4d78f09ed9a73882b4..4070135c9dadb4944d302ee942f2645e3c5270ba 100644 (file)
@@ -108,7 +108,7 @@ struct ixfrdiff_t {
 };
 
 struct ixfrinfo_t {
-  shared_ptr<SOARecordContent> soa; // The SOA of the latestAXFR
+  shared_ptr<SOARecordContent> soa; // The SOA of the latest AXFR
   records_t latestAXFR;             // The most recent AXFR
   vector<std::shared_ptr<ixfrdiff_t>> ixfrDiffs;
 };
@@ -625,7 +625,7 @@ static bool handleIXFR(int fd, const ComboAddress& destination, const MOADNSPars
     /* RFC 1995 Section 2
      *    If an IXFR query with the same or newer version number than that of
      *    the server is received, it is replied to with a single SOA record of
-     *    the server's current version, just as in AXFR.
+     *    the server's current version.
      */
     vector<uint8_t> packet;
     bool ret = makeSOAPacket(mdp, packet);
@@ -1252,7 +1252,7 @@ int main(int argc, char** argv) {
       break;
     }
   }
-  g_log<<Logger::Debug<<"Waiting for al threads to stop"<<endl;
+  g_log<<Logger::Debug<<"Waiting for all threads to stop"<<endl;
   g_tcpHandlerCV.notify_all();
   ut.join();
   for (auto &t : tcpHandlers) {