aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-04-20 07:26:50 +0000
committerAndreas Schneider <mail@cynapses.org>2009-04-20 07:26:50 +0000
commit9704df65e3adc6eea7c8b70e366d63ec0a3cd478 (patch)
tree3e0fb9f3adbc8fdea4190b96dee80799cf9107ae /include
parenta3c820cf948c25afd36c85a2302ecfdeb82a0cf4 (diff)
downloadlibssh-9704df65e3adc6eea7c8b70e366d63ec0a3cd478.tar.gz
libssh-9704df65e3adc6eea7c8b70e366d63ec0a3cd478.tar.xz
libssh-9704df65e3adc6eea7c8b70e366d63ec0a3cd478.zip
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
Diffstat (limited to 'include')
-rw-r--r--include/libssh/libssh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libssh/libssh.h b/include/libssh/libssh.h
index f265fa0b..fc6a4230 100644
--- a/include/libssh/libssh.h
+++ b/include/libssh/libssh.h
@@ -252,7 +252,7 @@ PRIVATE_KEY *privatekey_from_file(SSH_SESSION *session, const char *filename,
int type, const char *passphrase);
STRING *publickey_to_string(PUBLIC_KEY *key);
PUBLIC_KEY *publickey_from_privatekey(PRIVATE_KEY *prv);
-void private_key_free(PRIVATE_KEY *prv);
+void privatekey_free(PRIVATE_KEY *prv);
STRING *publickey_from_file(SSH_SESSION *session, const char *filename,int *_type);
STRING *publickey_from_next_file(SSH_SESSION *session, const char **pub_keys_path,
const char **keys_path, char **privkeyfile, int *type, int *count);