summaryrefslogtreecommitdiff
path: root/sftp.c
diff options
context:
space:
mode:
authordjm <djm>2006-03-26 03:23:17 +0000
committerdjm <djm>2006-03-26 03:23:17 +0000
commit68724d19aca7b8c24feeddd0f732fe113b2697e9 (patch)
tree6d21d7efdb3224cdf0509b57438a34bac95dd6e4 /sftp.c
parent5e5513faf51451ded4af614cb6c6390282690c9b (diff)
downloadopenssh-68724d19aca7b8c24feeddd0f732fe113b2697e9.tar.gz
- djm@cvs.openbsd.org 2006/03/25 01:30:23
[sftp.c] "abormally" is a perfectly cromulent word, but "abnormally" is better
Diffstat (limited to 'sftp.c')
-rw-r--r--sftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sftp.c b/sftp.c
index 194d2271..868794a7 100644
--- a/sftp.c
+++ b/sftp.c
@@ -244,7 +244,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));
}