diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-07-24 22:02:32 +0200 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-07-24 22:02:32 +0200 |
commit | fc5dd23afa3b71d1020065be61842964852f3482 (patch) | |
tree | ab1198445624cae190ebb8c3809d8000786cbc54 /libssh/keyfiles.c | |
parent | 91d0660cc3b0f72b690678862bb21cbe0328a186 (diff) | |
download | libssh-fc5dd23afa3b71d1020065be61842964852f3482.tar.gz libssh-fc5dd23afa3b71d1020065be61842964852f3482.tar.xz libssh-fc5dd23afa3b71d1020065be61842964852f3482.zip |
Changed all PUBLIC_KEY * to ssh_public_key
Diffstat (limited to 'libssh/keyfiles.c')
-rw-r--r-- | libssh/keyfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/keyfiles.c b/libssh/keyfiles.c index be927ba..8316312 100644 --- a/libssh/keyfiles.c +++ b/libssh/keyfiles.c @@ -1470,7 +1470,7 @@ int ssh_write_knownhost(SSH_SESSION *session) { if (strcmp(session->current_crypto->server_pubkey_type, "ssh-rsa1") == 0) { /* openssh uses a different format for ssh-rsa1 keys. Be compatible --kv */ - PUBLIC_KEY *key; + ssh_public_key key; char *e_string = NULL; char *n_string = NULL; bignum e = NULL; |