diff options
author | 2001-05-19 19:57:09 +0000 | |
---|---|---|
committer | 2001-05-19 19:57:09 +0000 | |
commit | c60001ea7e3c6704331fe3f0f743bd014b98756d (patch) | |
tree | 5dda793edc50dcaac4371edd3a695d496abc00ed /usr.bin/ssh/channels.c | |
parent | sshd command-line arguments and configuration file options that (diff) | |
download | wireguard-openbsd-c60001ea7e3c6704331fe3f0f743bd014b98756d.tar.xz wireguard-openbsd-c60001ea7e3c6704331fe3f0f743bd014b98756d.zip |
typo in error message
Diffstat (limited to 'usr.bin/ssh/channels.c')
-rw-r--r-- | usr.bin/ssh/channels.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/channels.c b/usr.bin/ssh/channels.c index 48f5f58d62c..9acc49f3f4b 100644 --- a/usr.bin/ssh/channels.c +++ b/usr.bin/ssh/channels.c @@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: channels.c,v 1.116 2001/05/16 22:09:20 markus Exp $"); +RCSID("$OpenBSD: channels.c,v 1.117 2001/05/19 19:57:09 stevesk Exp $"); #include <openssl/rsa.h> #include <openssl/dsa.h> @@ -1561,7 +1561,7 @@ reason2txt(int reason) case SSH2_OPEN_RESOURCE_SHORTAGE: return "resource shortage"; } - return "unkown reason"; + return "unknown reason"; } void |