X-Git-Url: https://git.tld-linux.org/?p=packages%2Flighttpd.git;a=blobdiff_plain;f=lighttpd-use_bin_sh.patch;fp=lighttpd-use_bin_sh.patch;h=0000000000000000000000000000000000000000;hp=de08dd3b03abee332f49fcefbfd338f58f577802;hb=a82f14d8d026e1971887479e79c9d5bf28e9890f;hpb=223786b81027a6b9383af70d71f478fec2b2429a diff --git a/lighttpd-use_bin_sh.patch b/lighttpd-use_bin_sh.patch deleted file mode 100644 index de08dd3..0000000 --- a/lighttpd-use_bin_sh.patch +++ /dev/null @@ -1,20 +0,0 @@ -## Use /bin/sh to execute external programs instead of getting -## the shell from $SHELL (See ticket #388) -# -# http://trac.lighttpd.net/trac/ticket/388 - ---- lighttpd-1.4.12/src/proc_open.c~ 2006-09-19 15:49:41.846531074 +0300 -+++ lighttpd-1.4.12/src/proc_open.c 2006-09-19 15:51:13.658593480 +0300 -@@ -219,11 +219,7 @@ - /* {{{ proc_open */ - int proc_open(proc_handler_t *proc, const char *command) { - pid_t child; -- const char *shell; -- -- if (NULL == (shell = getenv(SHELLENV))) { -- shell = "/bin/sh"; -- } -+ const char *shell = "/bin/sh"; - - if (proc_open_pipes(proc) != 0) { - return -1;