summaryrefslogtreecommitdiff
path: root/Ports/openssh
diff options
context:
space:
mode:
authorTim Schumacher <timschumi@gmx.de>2022-03-28 21:36:35 +0200
committerBrian Gianforcaro <b.gianfo@gmail.com>2022-03-29 09:10:34 -0700
commit8f3326616a54d9dc597d7d8576f73f3e23b1ef3e (patch)
treea3bad9b6788b5cf791bd5dec6432de66105510a0 /Ports/openssh
parentaa7b6852ce3f7c0d31faf409f0662bef0d5dddbd (diff)
downloadserenity-8f3326616a54d9dc597d7d8576f73f3e23b1ef3e.zip
Ports: Remove the OpenSSH prctl compatibility patch
Diffstat (limited to 'Ports/openssh')
-rw-r--r--Ports/openssh/patches/prctl-hack.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/Ports/openssh/patches/prctl-hack.patch b/Ports/openssh/patches/prctl-hack.patch
deleted file mode 100644
index bf6cf5fb1c..0000000000
--- a/Ports/openssh/patches/prctl-hack.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur openssh-portable-9ca7e9c861775dd6c6312bc8aaab687403d24676/platform-tracing.c openssh-portable-9ca7e9c861775dd6c6312bc8aaab687403d24676.serenity/platform-tracing.c
---- openssh-portable-9ca7e9c861775dd6c6312bc8aaab687403d24676/platform-tracing.c 2020-05-27 02:38:00.000000000 +0200
-+++ openssh-portable-9ca7e9c861775dd6c6312bc8aaab687403d24676.serenity/platform-tracing.c 2021-04-12 13:45:38.662816561 +0200
-@@ -35,7 +35,7 @@
- {
- #if defined(HAVE_PRCTL) && defined(PR_SET_DUMPABLE)
- /* Disable ptrace on Linux without sgid bit */
-- if (prctl(PR_SET_DUMPABLE, 0) != 0 && strict)
-+ if (prctl(PR_SET_DUMPABLE, 0, 0) != 0 && strict)
- fatal("unable to make the process undumpable");
- #endif
- #if defined(HAVE_SETPFLAGS) && defined(__PROC_PROTECT)