summaryrefslogtreecommitdiffstats
path: root/libssh/server.c
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2009-07-24 22:02:32 +0200
committerAris Adamantiadis <aris@0xbadc0de.be>2009-07-24 22:02:32 +0200
commitfc5dd23afa3b71d1020065be61842964852f3482 (patch)
treeab1198445624cae190ebb8c3809d8000786cbc54 /libssh/server.c
parent91d0660cc3b0f72b690678862bb21cbe0328a186 (diff)
downloadlibssh-fc5dd23afa3b71d1020065be61842964852f3482.tar.gz
libssh-fc5dd23afa3b71d1020065be61842964852f3482.tar.xz
libssh-fc5dd23afa3b71d1020065be61842964852f3482.zip
Changed all PUBLIC_KEY * to ssh_public_key
Diffstat (limited to 'libssh/server.c')
-rw-r--r--libssh/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/server.c b/libssh/server.c
index 7b33cc6..90b29b9 100644
--- a/libssh/server.c
+++ b/libssh/server.c
@@ -329,7 +329,7 @@ static int dh_handshake_server(SSH_SESSION *session) {
ssh_string f;
ssh_string pubkey;
ssh_string sign;
- PUBLIC_KEY *pub;
+ ssh_public_key pub;
PRIVATE_KEY *prv;
if (packet_wait(session, SSH2_MSG_KEXDH_INIT, 1) != SSH_OK) {