diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2006-03-25 01:30:24 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2006-03-25 01:30:24 +0000 |
commit | a771d24c9183a36dbb018835a8a270ae4c25708f (patch) | |
tree | a3904b79532c7edd2dbfab828a8c3c035b0f38ed /usr.bin | |
parent | 9a8aaa01f21a60e2f5f372b9722e363b36254df9 (diff) |
"abormally" is a perfectly cromulent word, but "abnormally" is better
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/sftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/ssh/sftp.c b/usr.bin/ssh/sftp.c index 333d283c72f..caf3026ff05 100644 --- a/usr.bin/ssh/sftp.c +++ b/usr.bin/ssh/sftp.c @@ -235,7 +235,7 @@ local_do_shell(const char *args) if (errno != EINTR) fatal("Couldn't wait for child: %s", strerror(errno)); if (!WIFEXITED(status)) - error("Shell exited abormally"); + error("Shell exited abnormally"); else if (WEXITSTATUS(status)) error("Shell exited with status %d", WEXITSTATUS(status)); } |