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 ad1e5ba7e..09659c1da 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -6132,7 +6132,7 @@ openhere(union node *redir) | |||
6132 | ignoresig(SIGTSTP); //signal(SIGTSTP, SIG_IGN); | 6132 | ignoresig(SIGTSTP); //signal(SIGTSTP, SIG_IGN); |
6133 | signal(SIGPIPE, SIG_DFL); | 6133 | signal(SIGPIPE, SIG_DFL); |
6134 | xwrite(pip[1], p, len); | 6134 | xwrite(pip[1], p, len); |
6135 | _exit(EXIT_SUCCESS); | 6135 | _exit_SUCCESS(); |
6136 | } | 6136 | } |
6137 | #endif | 6137 | #endif |
6138 | out: | 6138 | out: |
@@ -15860,7 +15860,7 @@ forkshell_openhere(struct forkshell *fs) | |||
15860 | ignoresig(SIGTSTP); //signal(SIGTSTP, SIG_IGN); | 15860 | ignoresig(SIGTSTP); //signal(SIGTSTP, SIG_IGN); |
15861 | signal(SIGPIPE, SIG_DFL); | 15861 | signal(SIGPIPE, SIG_DFL); |
15862 | xwrite(pip[1], p, len); | 15862 | xwrite(pip[1], p, len); |
15863 | _exit(EXIT_SUCCESS); | 15863 | _exit_SUCCESS(); |
15864 | } | 15864 | } |
15865 | 15865 | ||
15866 | static void | 15866 | static void |