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
This commit is contained in:
Cy Schubert 2019-07-08 19:11:35 +00:00
parent 46736e306c
commit b64b92b0d2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=349842

View File

@ -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;