diff options
author | 2001-05-03 15:07:39 +0000 | |
---|---|---|
committer | 2001-05-03 15:07:39 +0000 | |
commit | 3fd0e40b3fb765ac9ef9686f54462085c3a90859 (patch) | |
tree | 7433ac71c2cb8866e5956c9a4c2bb76b0d1c388f /usr.bin/ssh/channels.c | |
parent | Bump bootstrap stuff from op-make. Mostly from fries@ (diff) | |
download | wireguard-openbsd-3fd0e40b3fb765ac9ef9686f54462085c3a90859.tar.xz wireguard-openbsd-3fd0e40b3fb765ac9ef9686f54462085c3a90859.zip |
typo in debug() string
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 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)); |