]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
fix: dev: Fix port validation rejecting valid port 65535
authorOndřej Surý <ondrej@isc.org>
Sat, 14 Mar 2026 10:02:10 +0000 (11:02 +0100)
committerOndřej Surý <ondrej@isc.org>
Sat, 14 Mar 2026 10:02:10 +0000 (11:02 +0100)
Three port validation checks use >= UINT16_MAX instead of > UINT16_MAX,
incorrectly rejecting port 65535 as out of range.  Port 65535 is a valid
TCP/UDP port number.  Other port checks in the same file already use the
correct > comparison.

Merge branch 'ondrej/fix-port-validation-rejecting-valid-port-65535' into 'main'

See merge request isc-projects/bind9!11665


Trivial merge