summaryrefslogtreecommitdiff
path: root/channels.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-05-03 22:35:32 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-05-03 22:35:32 +0000
commit2b45180b2e743302ec502737fcd8abce4397f82d (patch)
tree4a6eaecba47ec2b2fab9c340bea032282f88ada9 /channels.c
parent8a1371347bf6843f9873fbcd624254c29a0026c1 (diff)
- stevesk@cvs.openbsd.org 2001/05/03 15:07:39
[channels.c] typo in debug() string
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels.c b/channels.c
index cd73bd726..23ea98ead 100644
--- a/channels.c
+++ b/channels.c
@@ -40,7 +40,7 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: channels.c,v 1.110 2001/04/29 19:16:52 markus Exp $"); 43RCSID("$OpenBSD: channels.c,v 1.111 2001/05/03 15:07:39 stevesk Exp $");
44 44
45#include <openssl/rsa.h> 45#include <openssl/rsa.h>
46#include <openssl/dsa.h> 46#include <openssl/dsa.h>
@@ -848,7 +848,7 @@ channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset)
848 debug("getsockopt SO_ERROR failed"); 848 debug("getsockopt SO_ERROR failed");
849 } else { 849 } else {
850 if (err == 0) { 850 if (err == 0) {
851 debug("channel %d: connected)", c->self); 851 debug("channel %d: connected", c->self);
852 } else { 852 } else {
853 debug("channel %d: not connected: %s", 853 debug("channel %d: not connected: %s",
854 c->self, strerror(err)); 854 c->self, strerror(err));