diff options
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c index 183911ccc..9d8b83c18 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -3469,7 +3469,7 @@ setjobctl(int on) | |||
3469 | close(ofd); | 3469 | close(ofd); |
3470 | if (fd < 0) | 3470 | if (fd < 0) |
3471 | goto out; | 3471 | goto out; |
3472 | fcntl(fd, F_SETFD, FD_CLOEXEC); | 3472 | close_on_exec_on(fd); |
3473 | do { /* while we are in the background */ | 3473 | do { /* while we are in the background */ |
3474 | pgrp = tcgetpgrp(fd); | 3474 | pgrp = tcgetpgrp(fd); |
3475 | if (pgrp < 0) { | 3475 | if (pgrp < 0) { |
@@ -8830,7 +8830,7 @@ closescript(void) | |||
8830 | static void | 8830 | static void |
8831 | setinputfd(int fd, int push) | 8831 | setinputfd(int fd, int push) |
8832 | { | 8832 | { |
8833 | fcntl(fd, F_SETFD, FD_CLOEXEC); | 8833 | close_on_exec_on(fd); |
8834 | if (push) { | 8834 | if (push) { |
8835 | pushfile(); | 8835 | pushfile(); |
8836 | parsefile->buf = 0; | 8836 | parsefile->buf = 0; |