mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-12-02 01:17:52 +03:00
channels: Fix type of arguments of channel_open()
Fixes T188 Signed-off-by: Andreas Schneider <asn@cryptomilk.org> Reviewed-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
@@ -284,8 +284,8 @@ static int ssh_channel_open_termination(void *c){
|
|||||||
static int
|
static int
|
||||||
channel_open(ssh_channel channel,
|
channel_open(ssh_channel channel,
|
||||||
const char *type,
|
const char *type,
|
||||||
int window,
|
uint32_t window,
|
||||||
int maxpacket,
|
uint32_t maxpacket,
|
||||||
ssh_buffer payload)
|
ssh_buffer payload)
|
||||||
{
|
{
|
||||||
ssh_session session = channel->session;
|
ssh_session session = channel->session;
|
||||||
|
|||||||
Reference in New Issue
Block a user