Module Name: src
Committed By: vanhu
Date: Mon Aug 24 09:33:03 UTC 2009
Modified Files:
src/crypto/dist/ipsec-tools/src/racoon: oakley.c
Log Message:
fixed typo: algoriym -> algorithm
To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/crypto/dist/ipsec-tools/src/racoon/oakley.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/crypto/dist/ipsec-tools/src/racoon/oakley.c
diff -u src/crypto/dist/ipsec-tools/src/racoon/oakley.c:1.16 src/crypto/dist/ipsec-tools/src/racoon/oakley.c:1.17
--- src/crypto/dist/ipsec-tools/src/racoon/oakley.c:1.16 Tue Aug 18 08:21:12 2009
+++ src/crypto/dist/ipsec-tools/src/racoon/oakley.c Mon Aug 24 09:33:03 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: oakley.c,v 1.16 2009/08/18 08:21:12 vanhu Exp $ */
+/* $NetBSD: oakley.c,v 1.17 2009/08/24 09:33:03 vanhu Exp $ */
/* Id: oakley.c,v 1.32 2006/05/26 12:19:46 manubsd Exp */
@@ -468,7 +468,7 @@
res = alg_oakley_hashdef_one(type, buf);
if (res == NULL) {
plog(LLV_ERROR, LOCATION, NULL,
- "invalid hash algoriym %d.\n", type);
+ "invalid hash algorithm %d.\n", type);
return NULL;
}
@@ -2826,7 +2826,7 @@
newivm->iv->l = alg_oakley_encdef_blocklen(iph1->approval->enctype);
if (newivm->iv->l == -1) {
plog(LLV_ERROR, LOCATION, NULL,
- "invalid encryption algoriym %d.\n",
+ "invalid encryption algorithm %d.\n",
iph1->approval->enctype);
vfree(buf);
oakley_delivm(newivm);
@@ -2908,7 +2908,7 @@
newivm->iv->l = alg_oakley_encdef_blocklen(iph1->approval->enctype);
if (newivm->iv->l == -1) {
plog(LLV_ERROR, LOCATION, NULL,
- "invalid encryption algoriym %d.\n",
+ "invalid encryption algorithm %d.\n",
iph1->approval->enctype);
goto end;
}
@@ -2972,7 +2972,7 @@
blen = alg_oakley_encdef_blocklen(iph1->approval->enctype);
if (blen == -1) {
plog(LLV_ERROR, LOCATION, NULL,
- "invalid encryption algoriym %d.\n",
+ "invalid encryption algorithm %d.\n",
iph1->approval->enctype);
goto end;
}
@@ -3094,7 +3094,7 @@
blen = alg_oakley_encdef_blocklen(iph1->approval->enctype);
if (blen == -1) {
plog(LLV_ERROR, LOCATION, NULL,
- "invalid encryption algoriym %d.\n",
+ "invalid encryption algorithm %d.\n",
iph1->approval->enctype);
goto end;
}