summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2006-05-11 20:40:13 +0000
committerHans-Joerg Hoexer <hshoexer@cvs.openbsd.org>2006-05-11 20:40:13 +0000
commit85369d26fbaa09622d791296ade1d948edb44dd5 (patch)
tree8a3997aa9a2b9a51c15bddfcc2e50f761237976b /sbin
parent9fc17420ccf845a6424be2da771d0a8f23ff7b0b (diff)
fix some spelling; noticed by david@
Diffstat (limited to 'sbin')
-rw-r--r--sbin/ipsecctl/parse.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/ipsecctl/parse.y b/sbin/ipsecctl/parse.y
index 69fed2fa5c0..4c360dd8ad7 100644
--- a/sbin/ipsecctl/parse.y
+++ b/sbin/ipsecctl/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.63 2006/04/20 09:03:23 hshoexer Exp $ */
+/* $OpenBSD: parse.y,v 1.64 2006/05/11 20:40:12 hshoexer Exp $ */
/*
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -1559,7 +1559,7 @@ validate_sa(u_int32_t spi, u_int8_t satype, struct ipsec_transforms *xfs,
return (0);
}
if (xfs->authxf || xfs->encxf) {
- yyerror("no encryption or authenticaion with ipcomp");
+ yyerror("no encryption or authentication with ipcomp");
return (0);
}
if (!xfs->compxf)
@@ -1571,7 +1571,7 @@ validate_sa(u_int32_t spi, u_int8_t satype, struct ipsec_transforms *xfs,
return (0);
}
if (xfs->authxf || xfs->encxf || xfs->compxf) {
- yyerror("no encryption, authenticaion or compression"
+ yyerror("no encryption, authentication or compression"
" with ipip");
return (0);
}