]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spelling: occurring
authorJosh Soref <jsoref@users.noreply.github.com>
Thu, 2 Feb 2017 10:19:48 +0000 (10:19 +0000)
committerJosh Soref <jsoref@users.noreply.github.com>
Thu, 2 Feb 2017 10:19:48 +0000 (10:19 +0000)
pdns/dnsdist-cache.cc

index 2b9c25cc49fae2ae1dcf38894ac62a7056094661..24bd53fe39b191e113affb7ee61ead9b6ad804f8 100644 (file)
@@ -27,7 +27,7 @@
 DNSDistPacketCache::DNSDistPacketCache(size_t maxEntries, uint32_t maxTTL, uint32_t minTTL, uint32_t tempFailureTTL, uint32_t staleTTL): d_maxEntries(maxEntries), d_maxTTL(maxTTL), d_tempFailureTTL(tempFailureTTL), d_minTTL(minTTL), d_staleTTL(staleTTL)
 {
   pthread_rwlock_init(&d_lock, 0);
-  /* we reserve maxEntries + 1 to avoid rehashing from occuring
+  /* we reserve maxEntries + 1 to avoid rehashing from occurring
      when we get to maxEntries, as it means a load factor of 1 */
   d_map.reserve(maxEntries + 1);
 }