]> granicus.if.org Git - pdns/commitdiff
Fix a few typos
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sun, 11 May 2014 11:04:56 +0000 (13:04 +0200)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Sun, 11 May 2014 16:41:47 +0000 (18:41 +0200)
modules/lmdbbackend/lmdbbackend.cc
pdns/dnsbackend.cc
pdns/dnsbackend.hh
pdns/docs/gslb-operations.sgml
pdns/docs/pdns.xml
pdns/packethandler.cc

index c7266c75b5abb2a4acfc870466a8027d5032056e..3417a79220877c5ea06762f9fb6cd65abfc23622 100644 (file)
@@ -129,7 +129,7 @@ bool LMDBBackend::getAuthZone( string &rev_zone )
         /* Skip back 1 entry to what should be a substring of what was searched
          * for (or a totally different entry) */
         if( mdb_cursor_get(zone_cursor, &key, &data, MDB_PREV) ) {
-            // At beginning of database; therefore didnt actually hit the
+            // At beginning of database; therefore didn't actually hit the
             // record. Return false
             return false;
         }
index d3b96e87be0e5f5e8e289e1f063a114360434977..baa8f2a552064b6f069a3436ec53ea11e1770777 100644 (file)
@@ -340,7 +340,7 @@ bool DNSBackend::calculateSOASerial(const string& domain, const SOAData& sd, tim
 /* String a is the query key, string b is the result from the database. Trys to
  * be intelegent and only return matching sections (ie up to the last point at
  * which there were .'s in both strings, however because the - character is
- * legal and < . in ascii it does not gaurentee to return a section point.
+ * legal and < . in ascii it does not guarantee to return a section point.
  */
 inline unsigned int compare_domains( const string &a, const string &b ) {
     int aLen = a.length(), bLen = b.length(), n = 0, last_dot = 0;
@@ -391,7 +391,7 @@ inline unsigned int compare_domains( const string &a, const string &b ) {
  * which, given a reversed zone name will return false if there was some sort
  * of error (eg no record found as top of database was hit, lookup issues),
  * otherwise returns true and sets reversed_zone_name to be the exact entry
- * found, otherwise the entry directly preceeding where it would be.
+ * found, otherwise the entry directly preceding where it would be.
  *
  * The subclass MUST implement getAuthData( const string &rev_zone_name, SOAData *soa )
  * which is basically the same as getSOA() but is called with the reversed zone name
index a76823779054860b8a26833f6ab50804c0e31d80..0024925b5491e2ac1d4ccc0cc03686d42ba5ee11 100644 (file)
@@ -377,14 +377,14 @@ private:
 class DNSReversedBackend : public DNSBackend {
     public:
         /* Given rev_zone (the reversed name of the zone we are looking for the
-         * SOA record for), return the equivelent of
+         * SOA record for), return the equivalent of
          *     SELECT name
          *     FROM soa_records
          *     WHERE name <= rev_zone
          *     ORDER BY name DESC
          *
          * ie we want either an exact hit on the record, or the immediately
-         * preceeding record when sorted lexographically.
+         * preceding record when sorted lexographically.
          *
          * Return true if something has been found, false if not
          */
index ec7c5005ca15560ebc4353fbcd8ce464d930a61b..2b13cbe6371b700b4f25208ed801775e0443dd82 100644 (file)
@@ -14,7 +14,7 @@ PowerDNS can be employed in a GSLB configuration
 <toc>
 <sect>GSLB
 <p>
-GSLB, short for Global Server Load Balancing, isr the act of distributing
+GSLB, short for Global Server Load Balancing, is the act of distributing
 server traffic to different locations. Although not necessary, this is
 almost always done using a smart nameserver.
 <sect1>Typical GSLB implementation
@@ -56,7 +56,7 @@ distance, as many Autonomous Subsystems now spread the globe.
 <sect1>IP Netmasks Configuration
 <p>
 PowerDNS comes preconfigured with a reasonable set of IP Rules. These may
-need some maintainance over time. It is adviseable to get a Subscription with
+need some maintenance over time. It is adviseable to get a Subscription with
 PowerDNS so as to receive updates.
 
 These rules come in several levels. The lowest level is based on who
index aeabf9a75b7782eab51d1888a8abbc1431ff758d..f2310464d258bf27f3d5aed4b31d9f8bec7bd2ba 100644 (file)
@@ -14746,7 +14746,7 @@ sql> insert into domainmetadata (domain_id, kind, content) values (6, 'TSIG-ALLO
                If a server has not responded in any way this many times in a row, no longer send it any queries
                for server-down-throttle-time seconds. Afterwards, we will try a new packet, and if that also
                gets no response at all, we again throttle for server-down-throttle-time-seconds. Even a single
-               reponse packet will drop the block. Available and on by default since 3.6.
+               response packet will drop the block. Available and on by default since 3.6.
              </para>
            </listitem>
          </varlistentry>
index 698c764d00fd8b81c4ea681479da1f58431c1f92..47454dc9b4eaa0212ed87dc90cd72b03f26547cb 100644 (file)
@@ -1256,7 +1256,7 @@ DNSPacket *PacketHandler::questionOrRecurse(DNSPacket *p, bool *shouldRecurse)
         return r;
     }
 
-    // we only know about qclass IN (and ANY), send NotImp for everthing else.
+    // we only know about qclass IN (and ANY), send NotImp for everything else.
     if(p->qclass != QClass::IN && p->qclass!=QClass::ANY) {
       r->setRcode(RCode::NotImp);
       return r;