diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-07-24 21:56:11 +0200 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-07-24 21:56:11 +0200 |
commit | 91d0660cc3b0f72b690678862bb21cbe0328a186 (patch) | |
tree | 023c86ea3cbbcfa9a86d8fe887ff03730ff86571 /libssh/kex.c | |
parent | fb5769b4be79943b7c53ebc0d5adb86ed77b9925 (diff) | |
download | libssh-91d0660cc3b0f72b690678862bb21cbe0328a186.tar.gz libssh-91d0660cc3b0f72b690678862bb21cbe0328a186.tar.xz libssh-91d0660cc3b0f72b690678862bb21cbe0328a186.zip |
Changed all occurences of BUFFER * to ssh_buffer
Diffstat (limited to 'libssh/kex.c')
-rw-r--r-- | libssh/kex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/kex.c b/libssh/kex.c index a9bfdef..ae9c9a5 100644 --- a/libssh/kex.c +++ b/libssh/kex.c @@ -445,7 +445,7 @@ int verify_existing_algo(int algo, const char *name){ /* makes a STRING contating 3 strings : ssh-rsa1,e and n */ /* this is a public key in openssh's format */ static ssh_string make_rsa1_string(ssh_string e, ssh_string n){ - BUFFER *buffer = NULL; + ssh_buffer buffer = NULL; ssh_string rsa = NULL; ssh_string ret = NULL; |