diff options
author | green <green@FreeBSD.org> | 1999-08-27 23:46:02 +0000 |
---|---|---|
committer | green <green@FreeBSD.org> | 1999-08-27 23:46:02 +0000 |
commit | 11a38f24046a6366488c11672b145e689115557a (patch) | |
tree | bae1b49c72f96256311cbf6a4cc14dd1f5b52c86 | |
parent | d4e3ebaf0a81e32bf7a10fb0f649ec6f060bc1fb (diff) | |
download | FreeBSD-src-11a38f24046a6366488c11672b145e689115557a.zip FreeBSD-src-11a38f24046a6366488c11672b145e689115557a.tar.gz |
Correction: uid -> gid (comment)
-rw-r--r-- | sys/netinet/ip_fw.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ip_fw.h b/sys/netinet/ip_fw.h index 6c09388..c14a96b 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.40 1999/08/01 16:57:16 green Exp $ + * $Id: ip_fw.h,v 1.41 1999/08/11 15:34:46 luigi Exp $ */ #ifndef _IP_FW_H @@ -168,7 +168,7 @@ struct ip_fw_chain { #define IP_FW_F_UID 0x00200000 /* filter by uid */ -#define IP_FW_F_GID 0x00400000 /* filter by uid */ +#define IP_FW_F_GID 0x00400000 /* filter by gid */ #define IP_FW_F_RND_MATCH 0x00800000 /* probabilistic rule match */ |