Date: Mon, 8 Jul 2019 19:11:36 +0000 (UTC) From: Cy Schubert <cy@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r349842 - head/sys/contrib/ipfilter/netinet Message-ID: <201907081911.x68JBaS1066889@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cy Date: Mon Jul 8 19:11:35 2019 New Revision: 349842 URL: https://svnweb.freebsd.org/changeset/base/349842 Log: 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 Modified: head/sys/contrib/ipfilter/netinet/ip_fil.h Modified: head/sys/contrib/ipfilter/netinet/ip_fil.h ============================================================================== --- head/sys/contrib/ipfilter/netinet/ip_fil.h Mon Jul 8 19:02:40 2019 (r349841) +++ head/sys/contrib/ipfilter/netinet/ip_fil.h Mon Jul 8 19:11:35 2019 (r349842) @@ -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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907081911.x68JBaS1066889>