]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Rec: Typos
authorFred Morcos <fred.morcos@open-xchange.com>
Tue, 12 Sep 2023 12:53:02 +0000 (14:53 +0200)
committerFred Morcos <fred.morcos@open-xchange.com>
Tue, 12 Sep 2023 14:01:28 +0000 (16:01 +0200)
pdns/recursordist/Makefile.am
pdns/recursordist/lazy_allocator.hh

index e231ea2b020366b4765cd089e7570019996d3542..8339ebae8884005e9dd3ca0e862d9f54aac497b3 100644 (file)
@@ -46,7 +46,7 @@ CLEANFILES = htmlfiles.h \
 htmlfiles.h: incfiles html/* html/js/*
        ./incfiles > $@
 
-# We explicilt build settings in two steps, as settings modifies files in the settings/rust subdir
+# We explicitly build settings in two steps, as settings modifies files in the settings/rust subdir
 SUBDIRS=ext settings settings/rust
 
 if LUA
index 39665b6ad266a350e3d10c5ccc5cde13fb207f1a..ead82293af9d50f41ed35f03d0d52965242abc98 100644 (file)
@@ -85,7 +85,7 @@ struct lazy_allocator
 #ifdef __OpenBSD__
     // OpenBSD does not like mmap MAP_STACK regions that have
     // PROT_NONE, so allocate r/w and mprotect the guard pages
-    // explictly.
+    // explicitly.
     const int protection = PROT_READ | PROT_WRITE;
 #else
     const int protection = PROT_NONE;