diff options
author | 2019-08-27 21:01:17 +0800 | |
---|---|---|
committer | 2019-08-27 09:01:17 -0400 | |
commit | 55160492cd23b5b6c04ce0d26535e9fbbff4f1e8 (patch) | |
tree | 23feed1d37aa0a7cbe55cab55c60bbca835b3594 /request | |
parent | f491880d6853f2a327d6b588d4eaa381aaa5f6a0 (diff) | |
download | coredns-55160492cd23b5b6c04ce0d26535e9fbbff4f1e8.tar.gz coredns-55160492cd23b5b6c04ce0d26535e9fbbff4f1e8.tar.zst coredns-55160492cd23b5b6c04ce0d26535e9fbbff4f1e8.zip |
fix mis-spelling in request.go (#3213)
Diffstat (limited to 'request')
-rw-r--r-- | request/request.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/request/request.go b/request/request.go index 1448cad65..0ce34816c 100644 --- a/request/request.go +++ b/request/request.go @@ -240,7 +240,7 @@ func (r *Request) Scrub(reply *dns.Msg) *dns.Msg { // Last ditch attempt to avoid fragmentation, if the size is bigger than the v4/v6 UDP fragmentation // limit and sent via UDP compress it (in the hope we go under that limit). Limits taken from NSD: // - // .., 1480 (EDNS/IPv4), 1220 (EDNS/IPv6), or the advertized EDNS buffer size if that is + // .., 1480 (EDNS/IPv4), 1220 (EDNS/IPv6), or the advertised EDNS buffer size if that is // smaller than the EDNS default. // See: https://open.nlnetlabs.nl/pipermail/nsd-users/2011-November/001278.html if rl > 1480 && r.Family() == 1 { |