diff options
author | green <green@FreeBSD.org> | 1999-07-28 22:22:57 +0000 |
---|---|---|
committer | green <green@FreeBSD.org> | 1999-07-28 22:22:57 +0000 |
commit | a8dcdb7b2ff100a54f4e47b0df6af5601e497e92 (patch) | |
tree | c234285982a0b40ec8fd3d4f9d012f4c09b1c21c | |
parent | edb27d9a846775dfb01d91b5768af9da616b248d (diff) | |
download | FreeBSD-src-a8dcdb7b2ff100a54f4e47b0df6af5601e497e92.zip FreeBSD-src-a8dcdb7b2ff100a54f4e47b0df6af5601e497e92.tar.gz |
Correct a really gross comment format.
-rw-r--r-- | sys/netinet/ip_fw.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/netinet/ip_fw.h b/sys/netinet/ip_fw.h index ba15dbd..d858040 100644 --- a/sys/netinet/ip_fw.h +++ b/sys/netinet/ip_fw.h @@ -11,7 +11,7 @@ * * This software is provided ``AS IS'' without any warranties of any kind. * - * $Id: ip_fw.h,v 1.37 1999/04/20 13:32:05 peter Exp $ + * $Id: ip_fw.h,v 1.38 1999/06/19 18:43:30 green Exp $ */ #ifndef _IP_FW_H @@ -75,10 +75,12 @@ struct ip_fw { struct sockaddr_in fu_fwd_ip; } fw_un; u_char fw_prot; /* IP protocol */ - u_char fw_nports; /* N'of src ports and # of dst ports */ - /* in ports array (dst ports follow */ - /* src ports; max of 10 ports in all; */ - /* count of 0 means match all ports) */ + /* + * N'of src ports and # of dst ports in ports array (dst ports + * follow src ports; max of 10 ports in all; count of 0 means + * match all ports) + */ + u_char fw_nports; void *pipe_ptr; /* Pipe ptr in case of dummynet pipe */ void *next_rule_ptr ; /* next rule in case of match */ uid_t fw_uid; /* uid to match */ |