mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-11-30 13:01:23 +03:00
Fix build warnings.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@273 7dcaeef0-15fb-0310-b436-a5af3365683c
This commit is contained in:
@@ -113,9 +113,9 @@ static int channel_open(CHANNEL *channel,char *type_c,int window,
|
||||
channel->local_channel,
|
||||
channel->remote_channel);
|
||||
ssh_log(session, SSH_LOG_PROTOCOL,
|
||||
"Remote window : %ld, maxpacket : %ld",
|
||||
channel->remote_window,
|
||||
channel->remote_maxpacket);
|
||||
"Remote window : %lu, maxpacket : %lu",
|
||||
(long unsigned int) channel->remote_window,
|
||||
(long unsigned int) channel->remote_maxpacket);
|
||||
channel->open=1;
|
||||
leave_function();
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user