diff options
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/ash.c b/shell/ash.c index 7a63fce..637ba01 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -3534,7 +3534,7 @@ static void xtcsetpgrp(int fd, pid_t pgrp) { if (tcsetpgrp(fd, pgrp)) - ash_msg_and_raise_error("cannot set tty process group (%m)"); + ash_msg_and_raise_error("can't set tty process group (%m)"); } /* @@ -4844,9 +4844,9 @@ openredirect(union node *redir) return f; ecreate: - ash_msg_and_raise_error("cannot create %s: %s", fname, errmsg(errno, "nonexistent directory")); + ash_msg_and_raise_error("can't create %s: %s", fname, errmsg(errno, "nonexistent directory")); eopen: - ash_msg_and_raise_error("cannot open %s: %s", fname, errmsg(errno, "no such file")); + ash_msg_and_raise_error("can't open %s: %s", fname, errmsg(errno, "no such file")); } /* |