summaryrefslogtreecommitdiff
path: root/net-dialup/pptpclient/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-09-30 11:19:18 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-09-30 11:19:18 +0100
commit62f67115b5c46134c34f88f4b1cbdacc19384c0a (patch)
tree0a76b14de203a4c23040e5665e39df8de9867745 /net-dialup/pptpclient/files
parent265dbe5dbc14c199299496c6db8fce3f76647015 (diff)
gentoo resync : 30.09.2018
Diffstat (limited to 'net-dialup/pptpclient/files')
-rw-r--r--net-dialup/pptpclient/files/pptpclient-1.7.2-process-name.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/net-dialup/pptpclient/files/pptpclient-1.7.2-process-name.patch b/net-dialup/pptpclient/files/pptpclient-1.7.2-process-name.patch
deleted file mode 100644
index b0051f81bde0..000000000000
--- a/net-dialup/pptpclient/files/pptpclient-1.7.2-process-name.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-diff -Nru pptp-1.7.2.orig/pptp.c pptp-1.7.2/pptp.c
---- pptp-1.7.2.orig/pptp.c 2008-05-14 08:33:55.000000000 +0200
-+++ pptp-1.7.2/pptp.c 2009-06-20 10:53:07.000000000 +0200
-@@ -59,11 +59,7 @@
- #include "pptp_callmgr.h"
- #include "pptp_gre.h"
- #include "version.h"
--#if defined(__linux__)
--#include <sys/prctl.h>
--#else
- #include "inststr.h"
--#endif
- #include "util.h"
- #include "pptp_quirks.h"
- #include "pqueue.h"
-@@ -394,12 +390,7 @@
- char *tty_name = ttyname(tty_fd);
- snprintf(buf, sizeof(buf), "pptp: GRE-to-PPP gateway on %s",
- tty_name ? tty_name : "(null)");
--#ifdef PR_SET_NAME
-- rc = prctl(PR_SET_NAME, "pptpgw", 0, 0, 0);
-- if (rc != 0) perror("prctl");
--#else
- inststr(argc, argv, envp, buf);
--#endif
- if (sigsetjmp(env, 1)!= 0) goto shutdown;
-
- signal(SIGINT, sighandler);
-@@ -495,13 +486,7 @@
- char *my_argv[3] = { argv[0], inet_ntoa(inetaddr), phonenr };
- char buf[128];
- snprintf(buf, sizeof(buf), "pptp: call manager for %s", my_argv[1]);
--#ifdef PR_SET_NAME
-- int rc;
-- rc = prctl(PR_SET_NAME, "pptpcm", 0, 0, 0);
-- if (rc != 0) perror("prctl");
--#else
- inststr(argc, argv, envp, buf);
--#endif
- exit(callmgr_main(3, my_argv, envp));
- }
-