From b290bbc8262310b5e76ed20f3b7486bbe17a0b09 Mon Sep 17 00:00:00 2001 From: cy Date: Thu, 11 Jul 2019 00:38:10 +0000 Subject: [PATCH] MFC r349842: Correct the description for the low port in the port compare struct. Adjust the high port description to match that of the low port description. git-svn-id: svn://svn.freebsd.org/base/stable/10@349902 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- sys/contrib/ipfilter/netinet/ip_fil.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/contrib/ipfilter/netinet/ip_fil.h b/sys/contrib/ipfilter/netinet/ip_fil.h index ef0a869d5..1a1e92943 100644 --- a/sys/contrib/ipfilter/netinet/ip_fil.h +++ b/sys/contrib/ipfilter/netinet/ip_fil.h @@ -594,8 +594,8 @@ typedef enum fr_ctypes_e { */ typedef struct frpcmp { fr_ctypes_t frp_cmp; /* data for port comparisons */ - u_32_t frp_port; /* top port for <> and >< */ - u_32_t frp_top; /* top port for <> and >< */ + u_32_t frp_port; /* low port for <> and >< */ + u_32_t frp_top; /* high port for <> and >< */ } frpcmp_t; -- 2.42.0