summaryrefslogtreecommitdiff
path: root/debian/patches/20_scanadf-SIGCHLD.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/20_scanadf-SIGCHLD.patch')
-rw-r--r--debian/patches/20_scanadf-SIGCHLD.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/debian/patches/20_scanadf-SIGCHLD.patch b/debian/patches/20_scanadf-SIGCHLD.patch
deleted file mode 100644
index ab91534..0000000
--- a/debian/patches/20_scanadf-SIGCHLD.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Description: Sets SIGCHLD to SIG_DFL before execle().
-Author: Jakub Wilk <jwilk@debian.org>
-Origin: http://www.opengroup.org/onlinepubs/009695399/functions/exec.html
-Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=596232
-Last-Update: 2014-12-03
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
-Index: trunk/src/scanadf.c
-===================================================================
---- trunk.orig/src/scanadf.c
-+++ trunk/src/scanadf.c
-@@ -1213,6 +1213,7 @@ scan_it_raw (const char *fname, SANE_Boo
-
- case 0:
- /* in child process */
-+ signal(SIGCHLD, SIG_DFL);
- sprintf(cmd, "%s '%s'", script, fname);
- /* system(cmd); */
- execle(script, script, fname, NULL, environ);