diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | channels.c | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -39,6 +39,9 @@ | |||
39 | 10m 10 minutes | 39 | 10m 10 minutes |
40 | 1h30m 1 hour 30 minutes (90 minutes) | 40 | 1h30m 1 hour 30 minutes (90 minutes) |
41 | ok markus@ | 41 | ok markus@ |
42 | - stevesk@cvs.openbsd.org 2001/05/19 19:57:09 | ||
43 | [channels.c] | ||
44 | typo in error message | ||
42 | 45 | ||
43 | 20010528 | 46 | 20010528 |
44 | - (tim) [conifgure.in] add setvbuf test needed for sftp-int.c | 47 | - (tim) [conifgure.in] add setvbuf test needed for sftp-int.c |
@@ -5469,4 +5472,4 @@ | |||
5469 | - Wrote replacements for strlcpy and mkdtemp | 5472 | - Wrote replacements for strlcpy and mkdtemp |
5470 | - Released 1.0pre1 | 5473 | - Released 1.0pre1 |
5471 | 5474 | ||
5472 | $Id: ChangeLog,v 1.1234 2001/06/05 19:59:08 mouring Exp $ | 5475 | $Id: ChangeLog,v 1.1235 2001/06/05 20:01:39 mouring Exp $ |
diff --git a/channels.c b/channels.c index 55cef42c2..d6540560a 100644 --- a/channels.c +++ b/channels.c | |||
@@ -40,7 +40,7 @@ | |||
40 | */ | 40 | */ |
41 | 41 | ||
42 | #include "includes.h" | 42 | #include "includes.h" |
43 | RCSID("$OpenBSD: channels.c,v 1.116 2001/05/16 22:09:20 markus Exp $"); | 43 | RCSID("$OpenBSD: channels.c,v 1.117 2001/05/19 19:57:09 stevesk Exp $"); |
44 | 44 | ||
45 | #include <openssl/rsa.h> | 45 | #include <openssl/rsa.h> |
46 | #include <openssl/dsa.h> | 46 | #include <openssl/dsa.h> |
@@ -1561,7 +1561,7 @@ reason2txt(int reason) | |||
1561 | case SSH2_OPEN_RESOURCE_SHORTAGE: | 1561 | case SSH2_OPEN_RESOURCE_SHORTAGE: |
1562 | return "resource shortage"; | 1562 | return "resource shortage"; |
1563 | } | 1563 | } |
1564 | return "unkown reason"; | 1564 | return "unknown reason"; |
1565 | } | 1565 | } |
1566 | 1566 | ||
1567 | void | 1567 | void |