Module Name: src
Committed By: tteras
Date: Sun Jan 1 15:44:06 UTC 2012
Modified Files:
src/crypto/dist/ipsec-tools/src/racoon: cfparse.y
Log Message:
Fix the previous commit.
To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/crypto/dist/ipsec-tools/src/racoon/cfparse.y
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/cfparse.y
diff -u src/crypto/dist/ipsec-tools/src/racoon/cfparse.y:1.45 src/crypto/dist/ipsec-tools/src/racoon/cfparse.y:1.46
--- src/crypto/dist/ipsec-tools/src/racoon/cfparse.y:1.45 Sun Jan 1 15:29:28 2012
+++ src/crypto/dist/ipsec-tools/src/racoon/cfparse.y Sun Jan 1 15:44:06 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: cfparse.y,v 1.45 2012/01/01 15:29:28 tteras Exp $ */
+/* $NetBSD: cfparse.y,v 1.46 2012/01/01 15:44:06 tteras Exp $ */
/* Id: cfparse.y,v 1.66 2006/08/22 18:17:17 manubsd Exp */
@@ -1267,7 +1267,7 @@ authgroup
groupname = racoon_malloc($1->l+1);
if (groupname == NULL) {
yyerror("unable to allocate auth group name");
- ABORT_AND_VFREE, $1);
+ ABORT_AND_VFREE($1);
}
memcpy(groupname,$1->v,$1->l);