From 0abd187dba22d4ad9a02bd9a36d5d7179e5df4ec Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 31 Oct 2019 13:39:07 +0100 Subject: [PATCH] channels: Fix type of arguments of channel_open() Fixes T188 Signed-off-by: Andreas Schneider Reviewed-by: Jakub Jelen --- src/channels.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/channels.c b/src/channels.c index 62d9a65e..a3f410fd 100644 --- a/src/channels.c +++ b/src/channels.c @@ -284,8 +284,8 @@ static int ssh_channel_open_termination(void *c){ static int channel_open(ssh_channel channel, const char *type, - int window, - int maxpacket, + uint32_t window, + uint32_t maxpacket, ssh_buffer payload) { ssh_session session = channel->session;