Skip to content

Commit

Permalink
spelling: will
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Soref <[email protected]>
  • Loading branch information
jsoref committed Nov 25, 2024
1 parent 36adcea commit 8ea9ef5
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/actions/spell-check/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1520,7 +1520,6 @@ Wielicki
Wijk
Wijnand
Wijngaards
wil
wildcarded
Willcott
windr
Expand Down
2 changes: 1 addition & 1 deletion pdns/gss_context.cc
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class GssSecContext : boost::noncopyable
GssContextType d_type{GSS_CONTEXT_NONE};
gss_ctx_id_t d_ctx{GSS_C_NO_CONTEXT};
gss_name_t d_peer_name{GSS_C_NO_NAME};
time_t d_expires{time(nullptr) + 60}; // partly initialized wil be cleaned up
time_t d_expires{time(nullptr) + 60}; // partly initialized will be cleaned up

enum
{
Expand Down
2 changes: 1 addition & 1 deletion pdns/recursordist/docs/lua-scripting/hooks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Interception Functions

The tagged packetcache can e.g. be used to answer queries from cache that have e.g. been filtered for certain IPs (this logic should be implemented in :func:`gettag`).
This ensure that queries are answered quickly compared to setting :attr:`dq.variable <DNSQuestion.variable>` to true.
In the latter case, repeated queries will not be found in the packetcache and pass through the entire resolving process, and all relevant Lua hooks wil be called.
In the latter case, repeated queries will not be found in the packetcache and pass through the entire resolving process, and all relevant Lua hooks will be called.

:param ComboAddress remote: The sender's IP address
:param Netmask ednssubnet: The EDNS Client subnet that was extracted from the packet
Expand Down
2 changes: 1 addition & 1 deletion pdns/recursordist/pdns_recursor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1558,7 +1558,7 @@ void startDoResolve(void* arg) // NOLINT(readability-function-cognitive-complexi

if (t_protobufServers.servers) {
// Max size is 64k, but we're conservative here, as other fields are added after the answers have been added
// If a single answer causes a too big protobuf message, it wil be dropped by queueData()
// If a single answer causes a too big protobuf message, it will be dropped by queueData()
// But note addRR has code to prevent that
if (pbMessage.size() < std::numeric_limits<uint16_t>::max() / 2) {
pbMessage.addRR(record, luaconfsLocal->protobufExportConfig.exportTypes, udr);
Expand Down
2 changes: 1 addition & 1 deletion pdns/recursordist/settings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ An example is the function
```

Which parses YAML and produces a struct with all the settings.
Settings that are not mentioned in the YAML string wil have their default value.
Settings that are not mentioned in the YAML string will have their default value.

`rust/lib.rs.h` contains the corresponding C++ prototype, defined in the `pdns::rust::settings::rec` namespace:

Expand Down
2 changes: 1 addition & 1 deletion pdns/recursordist/settings/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -1607,7 +1607,7 @@
for a name counts as 1. If a zone publishes more than this number of
NS records, the limit is further reduced for that zone by lowering
it by the number of NS records found above the
:ref:`setting-max-ns-address-qperq` value. The limit wil not be reduced to a
:ref:`setting-max-ns-address-qperq` value. The limit will not be reduced to a
number lower than 5.
''',
'versionadded' : ['4.1.16', '4.2.2', '4.3.1']
Expand Down

0 comments on commit 8ea9ef5

Please sign in to comment.