summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2002-06-28 19:07:04 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2002-06-28 19:07:04 +0000
commit921fb85bc9994b63fb1a10ecc4579e18ecc1c5c9 (patch)
tree44bb2ff7aaec452f770029024edb58773192d23c /sys
parentb40197ac3d20841fd4498221c071387a729fee63 (diff)
Fix usage counter for IPCOMP --- sam@errno.com
Diffstat (limited to 'sys')
-rw-r--r--sys/netinet/ipsec_input.c4
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;