- djm@cvs.openbsd.org 2004/08/23 11:48:47
[channels.c] typo, spotted by Martin.Kraemer AT Fujitsu-Siemens.com; ok markus
This commit is contained in:
parent
f4b43712c1
commit
e6ed83976b
|
@ -6,6 +6,9 @@
|
||||||
- djm@cvs.openbsd.org 2004/08/23 11:48:09
|
- djm@cvs.openbsd.org 2004/08/23 11:48:09
|
||||||
[authfile.c]
|
[authfile.c]
|
||||||
fix error path, spotted by Martin.Kraemer AT Fujitsu-Siemens.com; ok markus
|
fix error path, spotted by Martin.Kraemer AT Fujitsu-Siemens.com; ok markus
|
||||||
|
- djm@cvs.openbsd.org 2004/08/23 11:48:47
|
||||||
|
[channels.c]
|
||||||
|
typo, spotted by Martin.Kraemer AT Fujitsu-Siemens.com; ok markus
|
||||||
|
|
||||||
20040828
|
20040828
|
||||||
- (dtucker) [openbsd-compat/mktemp.c] Remove superfluous Cygwin #ifdef; from
|
- (dtucker) [openbsd-compat/mktemp.c] Remove superfluous Cygwin #ifdef; from
|
||||||
|
@ -1673,4 +1676,4 @@
|
||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3523 2004/08/29 06:28:39 dtucker Exp $
|
$Id: ChangeLog,v 1.3524 2004/08/29 06:29:44 dtucker Exp $
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#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 "ssh.h"
|
||||||
#include "ssh1.h"
|
#include "ssh1.h"
|
||||||
|
@ -2279,7 +2279,7 @@ channel_cancel_rport_listener(const char *host, u_short port)
|
||||||
if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
|
if (c != NULL && c->type == SSH_CHANNEL_RPORT_LISTENER &&
|
||||||
strncmp(c->path, host, sizeof(c->path)) == 0 &&
|
strncmp(c->path, host, sizeof(c->path)) == 0 &&
|
||||||
c->listening_port == port) {
|
c->listening_port == port) {
|
||||||
debug2("%s: close clannel %d", __func__, i);
|
debug2("%s: close channel %d", __func__, i);
|
||||||
channel_free(c);
|
channel_free(c);
|
||||||
found = 1;
|
found = 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue