1
0
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:
Fabiano Fidêncio
2015-09-16 22:13:09 +02:00
parent 898be61fc6
commit 77052d3a1e
5 changed files with 14 additions and 14 deletions

View File

@ -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;
}