diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-05-03 15:07:40 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-05-03 15:07:40 +0000 |
commit | 57511b700a438b67a1883409fb81810a6d53bb47 (patch) | |
tree | a57da5dd0ae01ff354758c1c89cb841d9cc39929 /usr.bin | |
parent | ec4744758449b328981eb085b3fb36d52ffed6d9 (diff) |
typo in debug() string
Diffstat (limited to 'usr.bin')
-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 b6b0b26eccf..aeb192e5314 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.110 2001/04/29 19:16:52 markus Exp $"); +RCSID("$OpenBSD: channels.c,v 1.111 2001/05/03 15:07:39 stevesk Exp $"); #include <openssl/rsa.h> #include <openssl/dsa.h> @@ -848,7 +848,7 @@ channel_post_connecting(Channel *c, fd_set * readset, fd_set * writeset) debug("getsockopt SO_ERROR failed"); } else { if (err == 0) { - debug("channel %d: connected)", c->self); + debug("channel %d: connected", c->self); } else { debug("channel %d: not connected: %s", c->self, strerror(err)); |