CVSROOT: /cvs Module name: src Changes by: m...@cvs.openbsd.org 2025/07/23 14:53:55
Modified files: sys/netinet : ip_input.c sys/netinet6 : in6_proto.c ip6_input.c Log message: Unlock IPV6CTL_HDRNESTLIMIT case of ip6_sysctl(). `ip6_hdrnestlimit' loaded only once in ip_deliver(). If the `ip6_hdrnestlimit' is null, the "(++nest > ip6_hdrnestlimit)" check will be always true, so the check of `ip6_hdrnestlimit' against null could be omitted. Also unused in ramdisk. ok bluhm