diff options
author | Bernhard Reutner-Fischer | 2008-07-21 13:46:54 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2008-07-21 13:46:54 +0000 |
commit | a53de7f7c2cd3ac46b26642aafb1a573a096a80d (patch) | |
tree | 76b95b7a441628b3495f744bec5d862b5250f562 /shell/ash.c | |
parent | e1e5174942d4624e3abb8b98fe404afdbb4edad1 (diff) | |
download | busybox-a53de7f7c2cd3ac46b26642aafb1a573a096a80d.zip busybox-a53de7f7c2cd3ac46b26642aafb1a573a096a80d.tar.gz |
- fix spelling
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")); } /* |