1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-26 01:03:15 +03:00

options: Fix size types

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Andreas Schneider
2018-08-24 07:31:39 +02:00
parent 4ae7e35d9c
commit 119a457357

View File

@@ -1092,7 +1092,7 @@ int ssh_options_getopt(ssh_session session, int *argcptr, char **argv)
int usedss = 0;
int compress = 0;
int cont = 1;
int current = 0;
size_t current = 0;
int saveoptind = optind; /* need to save 'em */
int saveopterr = opterr;
int opt;