summaryrefslogtreecommitdiff
path: root/channels.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-08-29 16:29:44 +1000
committerDarren Tucker <dtucker@zip.com.au>2004-08-29 16:29:44 +1000
commite6ed83976b0620778462f44a267d0ab2e9de3d09 (patch)
treeae92c179946e52b5a4a77bf24c033636b282bf0e /channels.c
parentf4b43712c135dc190e9e0ff145239c9e841cd55d (diff)
- djm@cvs.openbsd.org 2004/08/23 11:48:47
[channels.c] typo, spotted by Martin.Kraemer AT Fujitsu-Siemens.com; ok markus
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 1f6984aa7..ac35293d4 100644
--- a/channels.c
+++ b/channels.c
@@ -39,7 +39,7 @@
39 */ 39 */
40 40
41#include "includes.h" 41#include "includes.h"
42RCSID("$OpenBSD: channels.c,v 1.209 2004/08/11 21:43:04 avsm Exp $"); 42RCSID("$OpenBSD: channels.c,v 1.210 2004/08/23 11:48:47 djm Exp $");
43 43
44#include "ssh.h" 44#include "ssh.h"
45#include "ssh1.h" 45#include "ssh1.h"
@@ -2279,7 +2279,7 @@ channel_cancel_rport_listener(const char *host, u_short port)
2279 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER && 2279 if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
2280 strncmp(c->path, host, sizeof(c->path)) == 0 && 2280 strncmp(c->path, host, sizeof(c->path)) == 0 &&
2281 c->listening_port == port) { 2281 c->listening_port == port) {
2282 debug2("%s: close clannel %d", __func__, i); 2282 debug2("%s: close channel %d", __func__, i);
2283 channel_free(c); 2283 channel_free(c);
2284 found = 1; 2284 found = 1;
2285 } 2285 }