diff options
author | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-11-03 21:03:22 +0100 |
---|---|---|
committer | Aris Adamantiadis <aris@0xbadc0de.be> | 2009-11-03 21:03:22 +0100 |
commit | c0e091a52f8521d0cdcb9c22b4caa88bbe40e604 (patch) | |
tree | 6e17fd5222e40b3a40e7612f1164ea646913b361 /libssh/crypt.c | |
parent | cce34a61760cd03091e47c98ae8f7cfef5dd716c (diff) | |
download | libssh-c0e091a52f8521d0cdcb9c22b4caa88bbe40e604.tar.gz libssh-c0e091a52f8521d0cdcb9c22b4caa88bbe40e604.tar.xz libssh-c0e091a52f8521d0cdcb9c22b4caa88bbe40e604.zip |
Fix openssl header inclusion
caused cbc_encrypt to be redefined by an openssl
macro
Diffstat (limited to 'libssh/crypt.c')
-rw-r--r-- | libssh/crypt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libssh/crypt.c b/libssh/crypt.c index 172d215..2e05146 100644 --- a/libssh/crypt.c +++ b/libssh/crypt.c @@ -37,10 +37,9 @@ #endif #include "libssh/priv.h" -#include "libssh/crypto.h" #include "libssh/session.h" #include "libssh/wrapper.h" - +#include "libssh/crypto.h" uint32_t packet_decrypt_len(ssh_session session, char *crypted){ uint32_t decrypted; |