From e776dc16c958c71a83dffe06a85b5f98f3226e82 Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Fri, 24 Jul 2009 20:49:46 +0200 Subject: Fixed namespace problem in public structures changed struct string_struct to ssh_string_struct buffer_struct to ssh_buffer_struct and so on. Should not break apps using the caps version of these --- libssh/keys.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libssh/keys.c') diff --git a/libssh/keys.c b/libssh/keys.c index c53559d..828a87d 100644 --- a/libssh/keys.c +++ b/libssh/keys.c @@ -1100,10 +1100,10 @@ static STRING *RSA_do_sign(const unsigned char *payload, int len, RSA *privkey) #ifndef _WIN32 STRING *ssh_do_sign_with_agent(struct ssh_session *session, - struct buffer_struct *buf, struct public_key_struct *publickey) { - struct buffer_struct *sigbuf = NULL; - struct string_struct *signature = NULL; - struct string_struct *session_id = NULL; + struct ssh_buffer_struct *buf, struct ssh_public_key_struct *publickey) { + struct ssh_buffer_struct *sigbuf = NULL; + struct ssh_string_struct *signature = NULL; + struct ssh_string_struct *session_id = NULL; struct ssh_crypto_struct *crypto = NULL; if (session->current_crypto) { -- cgit