diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-07-24 20:49:46 +0200 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-07-24 20:49:46 +0200 |
commit | e776dc16c958c71a83dffe06a85b5f98f3226e82 (patch) | |
tree | ed0b22342e6e20866d8ecfa1d50ad0f99145bc0b /libssh/auth.c | |
parent | 9450a3c9874137d316b78a11d5ae21b887b9f1b2 (diff) | |
download | libssh-e776dc16c958c71a83dffe06a85b5f98f3226e82.tar.gz libssh-e776dc16c958c71a83dffe06a85b5f98f3226e82.tar.xz libssh-e776dc16c958c71a83dffe06a85b5f98f3226e82.zip |
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
Diffstat (limited to 'libssh/auth.c')
-rw-r--r-- | libssh/auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |