diff options
| author | 2006-03-25 01:30:23 +0000 | |
|---|---|---|
| committer | 2006-03-25 01:30:23 +0000 | |
| commit | 522632b7404ca79c5803c4a5262667f02b4f7768 (patch) | |
| tree | f20485e6d45cce4377cefc44feaebe38e119b950 | |
| parent | change OpenSSH's xrealloc() function from being xrealloc(p, new_size) to (diff) | |
| download | wireguard-openbsd-522632b7404ca79c5803c4a5262667f02b4f7768.tar.xz wireguard-openbsd-522632b7404ca79c5803c4a5262667f02b4f7768.zip | |
"abormally" is a perfectly cromulent word, but "abnormally" is better
| -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)); } |
