From: simon Date: Fri, 17 May 2002 12:33:20 +0000 (+0000) Subject: ieof-for-nonexistent-channel problem: avoid comparing an unsigned with -1 X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/commitdiff_plain/36cac739a5586b2c6cefe40fadc06ce93eae656d?hp=8dcbc8dd84b5785493efefb7a65cdfc2cd4852c4 ieof-for-nonexistent-channel problem: avoid comparing an unsigned with -1 git-svn-id: svn://svn.tartarus.org/sgt/putty@1686 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/ssh.c b/ssh.c index c9b1bcdb..2410d145 100644 --- a/ssh.c +++ b/ssh.c @@ -2739,7 +2739,7 @@ void sshfwd_close(struct ssh_channel *c) * on it now, and then when the server acks the channel * open, we can close it then. */ - if (c->remoteid != -1) { + if (((int)c->remoteid) != -1) { if (ssh_version == 1) { send_packet(SSH1_MSG_CHANNEL_CLOSE, PKT_INT, c->remoteid, PKT_END);