mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-10 18:28:10 +09:00
connect: Fix size type for i an j in ssh_select()
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
(cherry picked from commit 58113d489e)
This commit is contained in:
@@ -476,7 +476,7 @@ int ssh_select(ssh_channel *channels, ssh_channel *outchannels, socket_t maxfd,
|
|||||||
fd_set *readfds, struct timeval *timeout) {
|
fd_set *readfds, struct timeval *timeout) {
|
||||||
fd_set origfds;
|
fd_set origfds;
|
||||||
socket_t fd;
|
socket_t fd;
|
||||||
int i,j;
|
size_t i, j;
|
||||||
int rc;
|
int rc;
|
||||||
int base_tm, tm;
|
int base_tm, tm;
|
||||||
struct ssh_timestamp ts;
|
struct ssh_timestamp ts;
|
||||||
|
|||||||
Reference in New Issue
Block a user