diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2002-06-25 00:38:55 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2002-06-25 00:38:55 +0000 |
commit | 3a0f4144951e4f8a4e8a59ed5a5109cac3426481 (patch) | |
tree | a37e7ddf32c65a51c9bfd3a08762280e523fe388 | |
parent | dba4f05c387021972cc23f7ef094ddcd8832381c (diff) |
Forgot variable.
-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 adf42cd2db6..2af62a3f607 100644 --- a/sys/netinet/ipsec_input.c +++ b/sys/netinet/ipsec_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec_input.c,v 1.59 2002/06/25 00:20:38 angelos Exp $ */ +/* $OpenBSD: ipsec_input.c,v 1.60 2002/06/25 00:38:54 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -110,7 +110,7 @@ ipsec_common_input(struct mbuf *m, int skip, int protoff, int af, int sproto) struct tdb *tdbp; u_int32_t spi; u_int16_t cpi; - int s; + int s, error; IPSEC_ISTAT(espstat.esps_input, ahstat.ahs_input, ipcompstat.ipcomps_input); |