Fixed funny typo
This commit is contained in:
parent
a3f34674c6
commit
f8e93ad60a
3 changed files with 3 additions and 3 deletions
|
@ -9,7 +9,7 @@ set(CMAKE_C_FLAGS_DEBUG "-g -ggdb -pg -fsanitize=address")
|
||||||
set(CMAKE_C_FLAGS_RELEASE "-Os")
|
set(CMAKE_C_FLAGS_RELEASE "-Os")
|
||||||
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-Os -g")
|
set(CMAKE_C_FLAGS_RELWITHDEBINFO "-Os -g")
|
||||||
|
|
||||||
option(LIBSSH_VERBOSE_OUTPOUT "whether or not verbose output for libssh mode is activated" OFF)
|
option(LIBSSH_VERBOSE_OUTPUT "whether or not verbose output for libssh mode is activated" OFF)
|
||||||
option(SESSION_RECORDING "whether or not recording feature based on lib termrec is activated" ON)
|
option(SESSION_RECORDING "whether or not recording feature based on lib termrec is activated" ON)
|
||||||
|
|
||||||
add_subdirectory(bastion)
|
add_subdirectory(bastion)
|
||||||
|
|
|
@ -104,7 +104,7 @@ struct client_channel_data_struct* client_dial(ssh_event event, struct proxy_cha
|
||||||
|
|
||||||
ssh_options_set(cdata->my_session, SSH_OPTIONS_HOST, info->address);
|
ssh_options_set(cdata->my_session, SSH_OPTIONS_HOST, info->address);
|
||||||
ssh_options_set(cdata->my_session, SSH_OPTIONS_USER, info->username);
|
ssh_options_set(cdata->my_session, SSH_OPTIONS_USER, info->username);
|
||||||
#ifdef LIBSSH_VERBOSE_OUTPOUT
|
#ifdef LIBSSH_VERBOSE_OUTPUT
|
||||||
int verbosity = SSH_LOG_PROTOCOL;
|
int verbosity = SSH_LOG_PROTOCOL;
|
||||||
ssh_options_set(cdata->my_session, SSH_OPTIONS_LOG_VERBOSITY, &verbosity);
|
ssh_options_set(cdata->my_session, SSH_OPTIONS_LOG_VERBOSITY, &verbosity);
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -78,7 +78,7 @@ int main()
|
||||||
fprintf(stderr, "Error initializing ssh_session\n");
|
fprintf(stderr, "Error initializing ssh_session\n");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#ifdef LIBSSH_VERBOSE_OUTPOUT
|
#ifdef LIBSSH_VERBOSE_OUTPUT
|
||||||
int verbosity = SSH_LOG_PROTOCOL;
|
int verbosity = SSH_LOG_PROTOCOL;
|
||||||
ssh_options_set(session, SSH_OPTIONS_LOG_VERBOSITY, &verbosity);
|
ssh_options_set(session, SSH_OPTIONS_LOG_VERBOSITY, &verbosity);
|
||||||
#endif
|
#endif
|
||||||
|
|
Reference in a new issue