1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-10 06:23:01 +03:00

options: Remove set-but-never read variable

Signed-off-by: Jakub Jelen <jjelen@redhat.com>
Reviewed-by: Norbert Pocs <npocs@redhat.com>
This commit is contained in:
Jakub Jelen
2023-04-14 19:10:49 +02:00
parent fffdcfb373
commit c3aa0cb182

View File

@@ -1352,7 +1352,6 @@ int ssh_options_getopt(ssh_session session, int *argcptr, char **argv)
size_t i = 0;
int argc = *argcptr;
int debuglevel = 0;
int usersa = 0;
int compress = 0;
int cont = 1;
size_t current = 0;
@@ -1378,7 +1377,6 @@ int ssh_options_getopt(ssh_session session, int *argcptr, char **argv)
debuglevel++;
break;
case 'r':
usersa++;
break;
case 'c':
cipher = optarg;