diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2004-08-23 11:48:48 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2004-08-23 11:48:48 +0000 |
commit | 5c480e7243b62b45ee1c97baf53b3ccce89dc6ba (patch) | |
tree | dc01f25da9a094051c4e5ffaf477650b31071c9c /usr.bin | |
parent | ef6274034d233fc31845aa17f02eef96560b0d0a (diff) |
typo, spotted by Martin.Kraemer AT Fujitsu-Siemens.com; ok markus
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 24357a7a283..f875acabcef 100644 --- a/usr.bin/ssh/channels.c +++ b/usr.bin/ssh/channels.c @@ -39,7 +39,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: channels.c,v 1.209 2004/08/11 21:43:04 avsm Exp $"); +RCSID("$OpenBSD: channels.c,v 1.210 2004/08/23 11:48:47 djm Exp $"); #include "ssh.h" #include "ssh1.h" @@ -2269,7 +2269,7 @@ channel_cancel_rport_listener(const char *host, u_short port) if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER && strncmp(c->path, host, sizeof(c->path)) == 0 && c->listening_port == port) { - debug2("%s: close clannel %d", __func__, i); + debug2("%s: close channel %d", __func__, i); channel_free(c); found = 1; } |