diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-07-24 21:45:41 +0200 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-07-24 21:45:41 +0200 |
commit | 56ee212641e8f5a008224da103dce78e421eb4b6 (patch) | |
tree | 47b76a7dfcafe19303d0f72c2107c8581affa5fe /libssh/server.c | |
parent | 8f3891e968bad4b9fb06e92f5a893dd30a343677 (diff) | |
download | libssh-56ee212641e8f5a008224da103dce78e421eb4b6.tar.gz libssh-56ee212641e8f5a008224da103dce78e421eb4b6.tar.xz libssh-56ee212641e8f5a008224da103dce78e421eb4b6.zip |
Change all occurences of STRING * to ssh_string
Diffstat (limited to 'libssh/server.c')
-rw-r--r-- | libssh/server.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libssh/server.c b/libssh/server.c index 25021f6..7b33cc6 100644 --- a/libssh/server.c +++ b/libssh/server.c @@ -325,10 +325,10 @@ static int server_set_kex(SSH_SESSION * session) { } static int dh_handshake_server(SSH_SESSION *session) { - STRING *e; - STRING *f; - STRING *pubkey; - STRING *sign; + ssh_string e; + ssh_string f; + ssh_string pubkey; + ssh_string sign; PUBLIC_KEY *pub; PRIVATE_KEY *prv; |