summaryrefslogtreecommitdiff
path: root/sftp.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-03-26 14:23:17 +1100
committerDamien Miller <djm@mindrot.org>2006-03-26 14:23:17 +1100
commit55b04f1d77cdf503bf4c87e7a1ebf7d663b42554 (patch)
treeda8e4c30f55a9419936915f504b05f0f8007bbe1 /sftp.c
parent36812092ecb11a25ca9d6d87fdeaf53e371c5043 (diff)
- 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 194d22710..868794a76 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));
}