diff options
Diffstat (limited to 'channels.c')
-rw-r--r-- | channels.c | 4 |
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" |
42 | RCSID("$OpenBSD: channels.c,v 1.209 2004/08/11 21:43:04 avsm Exp $"); | 42 | RCSID("$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 | } |