mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-07-29 13:01:13 +03:00
cleanup: use ssh_ prefix in the agent (non-static) functions
Having "ssh_" prefix in the functions' name will avoid possible clashes when compiling libssh statically. Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
@ -394,7 +394,7 @@ static void torture_auth_agent(void **state) {
|
||||
ssh_session session = s->ssh.session;
|
||||
int rc;
|
||||
|
||||
if (!agent_is_running(session)){
|
||||
if (!ssh_agent_is_running(session)){
|
||||
print_message("*** Agent not running. Test ignored\n");
|
||||
return;
|
||||
}
|
||||
@ -421,7 +421,7 @@ static void torture_auth_agent_nonblocking(void **state) {
|
||||
ssh_session session = s->ssh.session;
|
||||
int rc;
|
||||
|
||||
if (!agent_is_running(session)){
|
||||
if (!ssh_agent_is_running(session)){
|
||||
print_message("*** Agent not running. Test ignored\n");
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user