diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-05-19 19:57:10 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-05-19 19:57:10 +0000 |
commit | 0e15b57c12d3cfe463206641772c20558e91359f (patch) | |
tree | c6b11c07c8179f97556d12a6b9378be3e6e6de28 /usr.bin/ssh | |
parent | 8f4395cd1608d535aa18fa6d47731ee13812c2dc (diff) |
typo in error message
Diffstat (limited to 'usr.bin/ssh')
-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 |