1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-29 01:03:57 +03:00

Rename privatekey_free() to be consistent with publickey_free().

git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@563 7dcaeef0-15fb-0310-b436-a5af3365683c
This commit is contained in:
Andreas Schneider
2009-04-20 07:26:50 +00:00
parent a3c820cf94
commit 9704df65e3
5 changed files with 19 additions and 19 deletions

View File

@@ -360,7 +360,7 @@ error:
* SSH_AUTH_SUCCESS : Authentication success
* \see publickey_from_file()
* \see privatekey_from_file()
* \see private_key_free()
* \see privatekey_free()
* \see ssh_userauth_offer_pubkey()
*/
@@ -471,7 +471,7 @@ error:
* SSH_AUTH_SUCCESS : Authentication success
* \see publickey_from_file()
* \see privatekey_from_file()
* \see private_key_free()
* \see privatekey_free()
* \see ssh_userauth_offer_pubkey()
*/
@@ -865,7 +865,7 @@ int ssh_userauth_autopubkey(SSH_SESSION *session, const char *passphrase) {
}
free(pubkey);
free(privkeyfile);
private_key_free(privkey);
privatekey_free(privkey);
leave_function();
return err;
} else
@@ -877,14 +877,14 @@ int ssh_userauth_autopubkey(SSH_SESSION *session, const char *passphrase) {
pubkey=NULL;
free(privkeyfile);
privkeyfile=NULL;
private_key_free(privkey);
privatekey_free(privkey);
continue;
}
/* auth success */
ssh_log(session, SSH_LOG_RARE,
"Authentication using %s success\n", privkeyfile);
free(pubkey);
private_key_free(privkey);
privatekey_free(privkey);
free(privkeyfile);
if(id){
pub_keys_path[0]=NULL;