diff options
author | 2002-06-28 19:07:03 +0000 | |
---|---|---|
committer | 2002-06-28 19:07:03 +0000 | |
commit | af3996987e80bc9f3c839d86a79f3ee69c9d8765 (patch) | |
tree | 46d11c4b872e1946b686555ab3eb59d66d639a22 | |
parent | Whoops, don't actually register for MODEXP yet (diff) | |
download | wireguard-openbsd-af3996987e80bc9f3c839d86a79f3ee69c9d8765.tar.xz wireguard-openbsd-af3996987e80bc9f3c839d86a79f3ee69c9d8765.zip |
Fix usage counter for IPCOMP --- sam@errno.com
-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; |