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/auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libssh/auth.c') diff --git a/libssh/auth.c b/libssh/auth.c index 77d4d21..8ad1310 100644 --- a/libssh/auth.c +++ b/libssh/auth.c @@ -795,7 +795,7 @@ static struct keys_struct keytab[] = { * @see ssh_options_set_identity() */ int ssh_userauth_autopubkey(SSH_SESSION *session, const char *passphrase) { - struct public_key_struct *publickey; + struct ssh_public_key_struct *publickey; STRING *pubkey; PRIVATE_KEY *privkey; char *privkeyfile = NULL; -- cgit