diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-01-10 01:23:28 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-01-10 01:23:28 +0000 |
commit | 0c9c4ce970c5ab8e3ef02ddf25e6990511b6b896 (patch) | |
tree | 2af99520aa947dbaf5f4be0a605449dbb2b90e95 /sys/netinet | |
parent | 518fb26432a7fa36fb118d5f49e0851f623a0134 (diff) |
Typo.
Diffstat (limited to 'sys/netinet')
-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 bf54844d51a..95a26653052 100644 --- a/sys/netinet/ipsec_input.c +++ b/sys/netinet/ipsec_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec_input.c,v 1.10 2000/01/10 01:20:53 angelos Exp $ */ +/* $OpenBSD: ipsec_input.c,v 1.11 2000/01/10 01:23:27 angelos Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), @@ -239,7 +239,7 @@ ipsec_common_input(struct mbuf **m0, int skip, int protoff, int af, int sproto) } /* If we do ingress filtering and the list is empty, quick drop */ - if (ipsec-acl && (tdbp->tdb_access == NULL)) + if (ipsec_acl && (tdbp->tdb_access == NULL)) { DPRINTF(("%s: packet from %s dropped due to empty policy list, SA %s/%08x\n", IPSEC_NAME, ipsp_address(src_address), ipsp_address(tdbp->tdb_dst), ntohl(spi))); splx(s); |