summaryrefslogtreecommitdiff
path: root/security/racoon/patches
diff options
context:
space:
mode:
authoritojun <itojun@pkgsrc.org>2002-05-07 09:03:57 +0000
committeritojun <itojun@pkgsrc.org>2002-05-07 09:03:57 +0000
commite7026585e584f83ce9c6eb1f46e3d4ee59705209 (patch)
tree5188f63316d9a8747d6f9e548b559d7be4981f46 /security/racoon/patches
parent87267ac0e28629671a01b5edbd499c77c4d8c1d8 (diff)
downloadpkgsrc-e7026585e584f83ce9c6eb1f46e3d4ee59705209.tar.gz
fix arg to plogv().
Diffstat (limited to 'security/racoon/patches')
-rw-r--r--security/racoon/patches/patch-ae4
-rw-r--r--security/racoon/patches/patch-af4
-rw-r--r--security/racoon/patches/patch-ag31
-rw-r--r--security/racoon/patches/patch-ah13
4 files changed, 50 insertions, 2 deletions
diff --git a/security/racoon/patches/patch-ae b/security/racoon/patches/patch-ae
index 66fed09eb1c..3193af424ad 100644
--- a/security/racoon/patches/patch-ae
+++ b/security/racoon/patches/patch-ae
@@ -1,4 +1,6 @@
-$NetBSD: patch-ae,v 1.9 2001/08/02 12:44:18 itojun Exp $
+$NetBSD: patch-ae,v 1.10 2002/05/07 09:03:57 itojun Exp $
+
+make it compile on 1.5.x
--- ../libipsec/key_debug.c- Thu Aug 2 21:38:17 2001
+++ ../libipsec/key_debug.c Thu Aug 2 21:38:44 2001
diff --git a/security/racoon/patches/patch-af b/security/racoon/patches/patch-af
index d4563bc11a4..7e769e20795 100644
--- a/security/racoon/patches/patch-af
+++ b/security/racoon/patches/patch-af
@@ -1,4 +1,6 @@
-$NetBSD: patch-af,v 1.1 2001/08/02 12:44:18 itojun Exp $
+$NetBSD: patch-af,v 1.2 2002/05/07 09:03:57 itojun Exp $
+
+make it compile on 1.5.x
--- ../libipsec/pfkey_dump.c- Thu Aug 2 21:38:21 2001
+++ ../libipsec/pfkey_dump.c Thu Aug 2 21:38:34 2001
diff --git a/security/racoon/patches/patch-ag b/security/racoon/patches/patch-ag
new file mode 100644
index 00000000000..3712b6af82c
--- /dev/null
+++ b/security/racoon/patches/patch-ag
@@ -0,0 +1,31 @@
+$NetBSD: patch-ag,v 1.3 2002/05/07 09:03:57 itojun Exp $
+
+--- plog.c Fri Apr 26 09:00:10 2002
++++ plog.c Tue May 7 17:56:49 2002
+@@ -1,2 +1,2 @@
+-/* $KAME: plog.c,v 1.22 2002/04/26 00:00:10 itojun Exp $ */
++/* $KAME: plog.c,v 1.23 2002/05/07 08:56:19 sakane Exp $ */
+
+@@ -133,6 +133,5 @@
+ plogv(int pri, const char *func, struct sockaddr *sa,
+- const char *fmt, ...)
++ const char *fmt, va_list ap)
+ {
+ char *newfmt;
+- va_list ap;
+
+@@ -143,9 +142,5 @@
+
+- if (f_foreground) {
+- va_start(ap, fmt);
++ if (f_foreground)
+ vprintf(newfmt, ap);
+- va_end(ap);
+- }
+
+- va_start(ap, fmt);
+ if (logfile)
+@@ -158,3 +153,2 @@
+ }
+- va_end(ap);
+ }
diff --git a/security/racoon/patches/patch-ah b/security/racoon/patches/patch-ah
new file mode 100644
index 00000000000..98fa0c98021
--- /dev/null
+++ b/security/racoon/patches/patch-ah
@@ -0,0 +1,13 @@
+$NetBSD: patch-ah,v 1.1 2002/05/07 09:03:57 itojun Exp $
+
+--- plog.h Fri Apr 26 09:00:10 2002
++++ plog.h Tue May 7 17:56:49 2002
+@@ -1,2 +1,2 @@
+-/* $KAME: plog.h,v 1.9 2002/04/26 00:00:10 itojun Exp $ */
++/* $KAME: plog.h,v 1.10 2002/05/07 08:56:19 sakane Exp $ */
+
+@@ -64,3 +64,3 @@
+ extern void plogv __P((int, const char *, struct sockaddr *,
+- const char *, ...));
++ const char *, va_list));
+ extern void plogdump __P((int, void *, size_t));