svn commit: r349902 - in stable: 10/sys/contrib/ipfilter/netinet 11/sys/contrib/ipfilter/netinet 12/sys/contrib/ipfilter/netinet

Cy Schubert cy at FreeBSD.org
Thu Jul 11 00:38:11 UTC 2019


Author: cy
Date: Thu Jul 11 00:38:10 2019
New Revision: 349902
URL: https://svnweb.freebsd.org/changeset/base/349902

Log:
  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.

Modified:
  stable/11/sys/contrib/ipfilter/netinet/ip_fil.h
Directory Properties:
  stable/11/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/10/sys/contrib/ipfilter/netinet/ip_fil.h
  stable/12/sys/contrib/ipfilter/netinet/ip_fil.h
Directory Properties:
  stable/10/   (props changed)
  stable/12/   (props changed)

Modified: stable/11/sys/contrib/ipfilter/netinet/ip_fil.h
==============================================================================
--- stable/11/sys/contrib/ipfilter/netinet/ip_fil.h	Thu Jul 11 00:22:10 2019	(r349901)
+++ stable/11/sys/contrib/ipfilter/netinet/ip_fil.h	Thu Jul 11 00:38:10 2019	(r349902)
@@ -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;
 
 


More information about the svn-src-all mailing list