diff options
Diffstat (limited to 'main/ipsec-tools/01-privsep-fix.patch')
-rw-r--r-- | main/ipsec-tools/01-privsep-fix.patch | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/main/ipsec-tools/01-privsep-fix.patch b/main/ipsec-tools/01-privsep-fix.patch deleted file mode 100644 index a4842a8ac9..0000000000 --- a/main/ipsec-tools/01-privsep-fix.patch +++ /dev/null @@ -1,46 +0,0 @@ -Please note that diffs are not public domain; they are subject to the -copyright notices on the relevant files. - -=================================================================== -RCS file: /ftp/cvs/cvsroot/src/crypto/dist/ipsec-tools/src/racoon/privsep.c,v -retrieving revision 1.21 -retrieving revision 1.21.2.1 -diff -u -p -r1.21 -r1.21.2.1 ---- ipsec-tools/src/racoon/privsep.c 2011/03/06 08:28:10 1.21 -+++ ipsec-tools/src/racoon/privsep.c 2011/08/12 05:46:06 1.21.2.1 -@@ -1,4 +1,4 @@ --/* $NetBSD: privsep.c,v 1.21 2011/03/06 08:28:10 tteras Exp $ */ -+/* $NetBSD: privsep.c,v 1.21.2.1 2011/08/12 05:46:06 tteras Exp $ */ - - /* Id: privsep.c,v 1.15 2005/08/08 11:23:44 vanhu Exp */ - -@@ -67,6 +67,7 @@ - #include "admin.h" - #include "sockmisc.h" - #include "privsep.h" -+#include "session.h" - - static int privsep_sock[2] = { -1, -1 }; - -@@ -193,6 +194,13 @@ privsep_recv(sock, bufp, lenp) - return 0; - } - -+static int -+privsep_do_exit(void *ctx, int fd) -+{ -+ kill(getpid(), SIGTERM); -+ return 0; -+} -+ - int - privsep_init(void) - { -@@ -273,6 +281,7 @@ privsep_init(void) - strerror(errno)); - return -1; - } -+ monitor_fd(privsep_sock[1], privsep_do_exit, NULL, 0); - - return 0; - break; |