diff options
author | 2002-06-25 00:38:54 +0000 | |
---|---|---|
committer | 2002-06-25 00:38:54 +0000 | |
commit | ca4de0136041637c2931258d444cf2247ac59f5d (patch) | |
tree | d6e298bdcc07a8a862178d7362404bc481485874 /sys | |
parent | Complete yet more of the c2k2 initiated changes. In this round: (diff) | |
download | wireguard-openbsd-ca4de0136041637c2931258d444cf2247ac59f5d.tar.xz wireguard-openbsd-ca4de0136041637c2931258d444cf2247ac59f5d.zip |
Forgot variable.
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 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); |