aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2016-10-27 11:06:09 +0100
committerRon Yorston <rmy@pobox.com>2016-10-27 11:06:09 +0100
commit687f98b0ba79aeb85b73c4ab06b661fb17bf4e23 (patch)
tree4e27cd3a208829775ede9dba52f1b39db902c61f /shell
parent6a816cfddc9d0cd82f380cfa4e4e27b5534dd68c (diff)
downloadbusybox-w32-687f98b0ba79aeb85b73c4ab06b661fb17bf4e23.tar.gz
busybox-w32-687f98b0ba79aeb85b73c4ab06b661fb17bf4e23.tar.bz2
busybox-w32-687f98b0ba79aeb85b73c4ab06b661fb17bf4e23.zip
Post-merge fix
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 9781bf65d..9c73760f0 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -14111,7 +14111,7 @@ forkshell_evalbackcmd(struct forkshell *fs)
14111 close(pip[0]); 14111 close(pip[0]);
14112 if (pip[1] != 1) { 14112 if (pip[1] != 1) {
14113 /*close(1);*/ 14113 /*close(1);*/
14114 copyfd(pip[1], 1 | COPYFD_EXACT); 14114 dup2_or_raise(pip[1], 1);
14115 close(pip[1]); 14115 close(pip[1]);
14116 } 14116 }
14117 eflag = 0; 14117 eflag = 0;