Fix compile bug introduced by another bugfix

This commit is contained in:
Aris Adamantiadis
2009-11-18 20:54:39 +01:00
parent ca9f42a20f
commit b00e2ad40e

View File

@@ -548,7 +548,7 @@ static ssh_message handle_channel_request(ssh_session session) {
msg->channel_request.channel = ssh_channel_from_local(session, channel); msg->channel_request.channel = ssh_channel_from_local(session, channel);
if (msg->channel_request.channel == NULL) { if (msg->channel_request.channel == NULL) {
ssh_set_error(session, SSH_FATAL, "There are no channels with the id %u.", ssh_set_error(session, SSH_FATAL, "There are no channels with the id %u.",
channels); channel);
goto error; goto error;
} }
msg->channel_request.want_reply = want_reply; msg->channel_request.want_reply = want_reply;