diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-21 13:46:54 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-07-21 13:46:54 +0000 |
commit | a53de7f7c2cd3ac46b26642aafb1a573a096a80d (patch) | |
tree | 76b95b7a441628b3495f744bec5d862b5250f562 /shell/ash.c | |
parent | e1e5174942d4624e3abb8b98fe404afdbb4edad1 (diff) | |
download | busybox-w32-a53de7f7c2cd3ac46b26642aafb1a573a096a80d.tar.gz busybox-w32-a53de7f7c2cd3ac46b26642aafb1a573a096a80d.tar.bz2 busybox-w32-a53de7f7c2cd3ac46b26642aafb1a573a096a80d.zip |
- 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 7a63fcec7..637ba0128 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -3534,7 +3534,7 @@ static void | |||
3534 | xtcsetpgrp(int fd, pid_t pgrp) | 3534 | xtcsetpgrp(int fd, pid_t pgrp) |
3535 | { | 3535 | { |
3536 | if (tcsetpgrp(fd, pgrp)) | 3536 | if (tcsetpgrp(fd, pgrp)) |
3537 | ash_msg_and_raise_error("cannot set tty process group (%m)"); | 3537 | ash_msg_and_raise_error("can't set tty process group (%m)"); |
3538 | } | 3538 | } |
3539 | 3539 | ||
3540 | /* | 3540 | /* |
@@ -4844,9 +4844,9 @@ openredirect(union node *redir) | |||
4844 | 4844 | ||
4845 | return f; | 4845 | return f; |
4846 | ecreate: | 4846 | ecreate: |
4847 | ash_msg_and_raise_error("cannot create %s: %s", fname, errmsg(errno, "nonexistent directory")); | 4847 | ash_msg_and_raise_error("can't create %s: %s", fname, errmsg(errno, "nonexistent directory")); |
4848 | eopen: | 4848 | eopen: |
4849 | ash_msg_and_raise_error("cannot open %s: %s", fname, errmsg(errno, "no such file")); | 4849 | ash_msg_and_raise_error("can't open %s: %s", fname, errmsg(errno, "no such file")); |
4850 | } | 4850 | } |
4851 | 4851 | ||
4852 | /* | 4852 | /* |