mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-09 09:54:25 +09:00
Fix stupid bug which stops log_verbosity working
This commit is contained in:
committed by
Andreas Schneider
parent
b174ad8ae4
commit
fd6823691b
@@ -553,6 +553,7 @@ int ssh_options_set(ssh_session session, enum ssh_options_e type,
|
|||||||
|
|
||||||
session->log_verbosity = *x & 0xffff;
|
session->log_verbosity = *x & 0xffff;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
case SSH_OPTIONS_LOG_VERBOSITY_STR:
|
case SSH_OPTIONS_LOG_VERBOSITY_STR:
|
||||||
if (value == NULL) {
|
if (value == NULL) {
|
||||||
session->log_verbosity = 0 & 0xffff;
|
session->log_verbosity = 0 & 0xffff;
|
||||||
|
|||||||
Reference in New Issue
Block a user