diff options
Diffstat (limited to 'security/racoon2/patches/patch-lib_cfparse.y')
-rw-r--r-- | security/racoon2/patches/patch-lib_cfparse.y | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/security/racoon2/patches/patch-lib_cfparse.y b/security/racoon2/patches/patch-lib_cfparse.y new file mode 100644 index 00000000000..6e9de377878 --- /dev/null +++ b/security/racoon2/patches/patch-lib_cfparse.y @@ -0,0 +1,15 @@ +$NetBSD: patch-lib_cfparse.y,v 1.1 2013/03/29 13:52:45 joerg Exp $ + +Fix type mismatch to avoid compilation error. + +--- lib/cfparse.y.orig 2009-02-02 17:49:18.000000000 +0900 ++++ lib/cfparse.y 2013-03-29 21:31:04.000000000 +0900 +@@ -1712,7 +1712,7 @@ + int n; + char *bp; + struct cf_list *new; +- rcf_t type; ++ rc_type type; + + n = strtoll(str, &bp, 10); + |