summaryrefslogtreecommitdiff
path: root/package/dropbear/patches/patch-svr-main_c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2024-05-08 16:07:10 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2024-05-08 16:07:10 +0200
commit362e0a0aeb1b9dbf42e3a46eaf5788d90a9c316b (patch)
tree38b60cbfef9094d5835419326bf24d81131d5351 /package/dropbear/patches/patch-svr-main_c
parentc6aa67f44710d6de72d7036c6e59a9f217e11ee5 (diff)
dropbear: refresh patch for vfork
Diffstat (limited to 'package/dropbear/patches/patch-svr-main_c')
-rw-r--r--package/dropbear/patches/patch-svr-main_c15
1 files changed, 0 insertions, 15 deletions
diff --git a/package/dropbear/patches/patch-svr-main_c b/package/dropbear/patches/patch-svr-main_c
deleted file mode 100644
index b2d4007b8..000000000
--- a/package/dropbear/patches/patch-svr-main_c
+++ /dev/null
@@ -1,15 +0,0 @@
---- dropbear-2020.81.orig/svr-main.c 2020-10-29 14:35:50.000000000 +0100
-+++ dropbear-2020.81/svr-main.c 2020-11-04 05:04:33.736369225 +0100
-@@ -278,8 +278,12 @@ static void main_noinetd() {
- #if DEBUG_NOFORK
- fork_ret = 0;
- #else
-+#if DROPBEAR_VFORK
-+ fork_ret = vfork();
-+#else
- fork_ret = fork();
- #endif
-+#endif
- if (fork_ret < 0) {
- dropbear_log(LOG_WARNING, "Error forking: %s", strerror(errno));
- goto out;