diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-02-19 21:11:24 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-02-19 21:11:24 +0000 |
commit | 0379b38f13e9a6e8e8f6ef6459165fc5673b3856 (patch) | |
tree | 88871bea19b5b36bd26d1e792b507ef6dd3d7209 /sys/netinet | |
parent | 23b775fab884acb1570160ada54ec6bbe8a517b2 (diff) |
IPsec is written ``IPsec'', not ``IPSec''.
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/ipsec_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/ipsec_output.c b/sys/netinet/ipsec_output.c index 36102f7deae..c2b7cf728c7 100644 --- a/sys/netinet/ipsec_output.c +++ b/sys/netinet/ipsec_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipsec_output.c,v 1.20 2001/12/06 22:52:10 angelos Exp $ */ +/* $OpenBSD: ipsec_output.c,v 1.21 2002/02/19 21:11:22 miod Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) * @@ -80,7 +80,7 @@ ipsp_process_packet(struct mbuf *m, struct tdb *tdb, int af, int tunalready) if ((tdb->tdb_sproto == IPPROTO_ESP && !esp_enable) || (tdb->tdb_sproto == IPPROTO_AH && !ah_enable) || (tdb->tdb_sproto == IPPROTO_IPCOMP && !ipcomp_enable)) { - DPRINTF(("ipsp_process_packet(): IPSec outbound packet " + DPRINTF(("ipsp_process_packet(): IPsec outbound packet " "dropped due to policy (check your sysctls)\n")); m_freem(m); return EHOSTUNREACH; |