1
1

options: Use the new function to use the log level.

Этот коммит содержится в:
Andreas Schneider 2013-07-14 12:53:01 +02:00
родитель c28efb8cbc
Коммит 0d3deeec10

Просмотреть файл

@ -1042,7 +1042,7 @@ int ssh_options_getopt(ssh_session session, int *argcptr, char **argv) {
cont = 0; cont = 0;
} }
ssh_options_set(session, SSH_OPTIONS_LOG_VERBOSITY, &debuglevel); ssh_set_log_level(debuglevel);
optind = saveoptind; optind = saveoptind;
@ -1360,7 +1360,7 @@ int ssh_bind_options_set(ssh_bind sshbind, enum ssh_bind_options_e type,
return -1; return -1;
} else { } else {
int *x = (int *) value; int *x = (int *) value;
sshbind->common.log_verbosity = *x & 0xffff; ssh_set_log_level(*x & 0xffff);
} }
break; break;
case SSH_BIND_OPTIONS_LOG_VERBOSITY_STR: case SSH_BIND_OPTIONS_LOG_VERBOSITY_STR: