mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-11-29 01:03:57 +03:00
Rename function to agent_is_running.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@236 7dcaeef0-15fb-0310-b436-a5af3365683c
This commit is contained in:
@@ -448,7 +448,7 @@ void agent_free(struct agent_struct *agent);
|
|||||||
*
|
*
|
||||||
* @return 1 if it is running, 0 if not.
|
* @return 1 if it is running, 0 if not.
|
||||||
*/
|
*/
|
||||||
int agent_running(struct ssh_session *session);
|
int agent_is_running(struct ssh_session *session);
|
||||||
|
|
||||||
int agent_get_ident_count(struct ssh_session *session);
|
int agent_get_ident_count(struct ssh_session *session);
|
||||||
|
|
||||||
|
|||||||
@@ -430,7 +430,7 @@ STRING *agent_sign_data(struct ssh_session *session,
|
|||||||
return sig;
|
return sig;
|
||||||
}
|
}
|
||||||
|
|
||||||
int agent_running(SSH_SESSION *session) {
|
int agent_is_running(SSH_SESSION *session) {
|
||||||
if (session == NULL || session->agent == NULL) {
|
if (session == NULL || session->agent == NULL) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -359,7 +359,7 @@ int ssh_userauth_agent_pubkey(SSH_SESSION *session, const char *username,
|
|||||||
int err = SSH_AUTH_ERROR;
|
int err = SSH_AUTH_ERROR;
|
||||||
|
|
||||||
enter_function();
|
enter_function();
|
||||||
if (! agent_running(session)) {
|
if (! agent_is_running(session)) {
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -516,7 +516,7 @@ int ssh_userauth_autopubkey(SSH_SESSION *session, const char *passphrase) {
|
|||||||
|
|
||||||
/* try ssh-agent keys first */
|
/* try ssh-agent keys first */
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
if (agent_running(session)) {
|
if (agent_is_running(session)) {
|
||||||
ssh_log(session, SSH_LOG_RARE,
|
ssh_log(session, SSH_LOG_RARE,
|
||||||
"Trying to authenticate with SSH agent keys");
|
"Trying to authenticate with SSH agent keys");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user