mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-09 09:54:25 +09:00
Fix build warnings.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@315 7dcaeef0-15fb-0310-b436-a5af3365683c
This commit is contained in:
@@ -246,7 +246,7 @@ static void channel_rcv_data(SSH_SESSION *session,int is_stderr){
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ssh_log(session, SSH_LOG_PROTOCOL,
|
ssh_log(session, SSH_LOG_PROTOCOL,
|
||||||
"Channel receiving %d bytes data in %d (local win=%d remote win=%d)",
|
"Channel receiving %zu bytes data in %d (local win=%d remote win=%d)",
|
||||||
string_len(str),
|
string_len(str),
|
||||||
is_stderr,
|
is_stderr,
|
||||||
channel->local_window,
|
channel->local_window,
|
||||||
@@ -254,7 +254,7 @@ static void channel_rcv_data(SSH_SESSION *session,int is_stderr){
|
|||||||
/* what shall we do in this case ? let's accept it anyway */
|
/* what shall we do in this case ? let's accept it anyway */
|
||||||
if(string_len(str)>channel->local_window)
|
if(string_len(str)>channel->local_window)
|
||||||
ssh_log(session, SSH_LOG_RARE,
|
ssh_log(session, SSH_LOG_RARE,
|
||||||
"Data packet too big for our window(%d vs %d)",
|
"Data packet too big for our window(%zu vs %d)",
|
||||||
string_len(str),
|
string_len(str),
|
||||||
channel->local_window);
|
channel->local_window);
|
||||||
channel_default_bufferize(channel,str->string,string_len(str), is_stderr);
|
channel_default_bufferize(channel,str->string,string_len(str), is_stderr);
|
||||||
|
|||||||
Reference in New Issue
Block a user