aboutsummaryrefslogtreecommitdiff
path: root/sys/contrib/ipfilter
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2019-07-08 19:11:35 +0000
committerCy Schubert <cy@FreeBSD.org>2019-07-08 19:11:35 +0000
commitb64b92b0d204a38aef966f9783905ded8c8142cb (patch)
tree00e5fb3b609606a71d5d2121ba1277e8fd7198e4 /sys/contrib/ipfilter
parent46736e306c584e55f76b78e772e012ecbc3cb658 (diff)
downloadsrc-b64b92b0d204a38aef966f9783905ded8c8142cb.tar.gz
src-b64b92b0d204a38aef966f9783905ded8c8142cb.zip
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. MFC after: 3 days
Notes
Notes: svn path=/head/; revision=349842
Diffstat (limited to 'sys/contrib/ipfilter')
-rw-r--r--sys/contrib/ipfilter/netinet/ip_fil.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/contrib/ipfilter/netinet/ip_fil.h b/sys/contrib/ipfilter/netinet/ip_fil.h
index 032cf0dea853..cbcc8827a497 100644
--- a/sys/contrib/ipfilter/netinet/ip_fil.h
+++ b/sys/contrib/ipfilter/netinet/ip_fil.h
@@ -584,8 +584,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;