diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2002-06-28 19:07:04 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2002-06-28 19:07:04 +0000 |
commit | 921fb85bc9994b63fb1a10ecc4579e18ecc1c5c9 (patch) | |
tree | 44bb2ff7aaec452f770029024edb58773192d23c /sys | |
parent | b40197ac3d20841fd4498221c071387a729fee63 (diff) |
Fix usage counter for IPCOMP --- sam@errno.com
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/ipsec_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ipsec_input.c b/sys/netinet/ipsec_input.c index 2af62a3f607..cf6cacb6785 100644 --- a/sys/netinet/ipsec_input.c +++ b/sys/netinet/ipsec_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec_input.c,v 1.60 2002/06/25 00:38:54 angelos Exp $ */ +/* $OpenBSD: ipsec_input.c,v 1.61 2002/06/28 19:07:03 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -103,7 +103,7 @@ int ipsec_common_input(struct mbuf *m, int skip, int protoff, int af, int sproto) { #define IPSEC_ISTAT(x,y,z) (sproto == IPPROTO_ESP ? (x)++ : \ - IPPROTO_AH ? (y)++ : (z)++) + sproto == IPPROTO_AH ? (y)++ : (z)++) union sockaddr_union dst_address; struct timeval tv; |