diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2011-09-17 22:47:56 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2011-09-18 21:37:18 +0200 |
commit | dc42a1757fdbbf5b0ffd877649b6cf08b1385420 (patch) | |
tree | 7203b92aa25af19d4be5228f859ea0d416d4baa2 /src/gzip.c | |
parent | 7202a26b6ce9dc30a3764ce177337051d5136bcf (diff) | |
download | libssh-dc42a1757fdbbf5b0ffd877649b6cf08b1385420.tar.gz libssh-dc42a1757fdbbf5b0ffd877649b6cf08b1385420.tar.xz libssh-dc42a1757fdbbf5b0ffd877649b6cf08b1385420.zip |
gzip: Fix zlib support.
Diffstat (limited to 'src/gzip.c')
-rw-r--r-- | src/gzip.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -24,11 +24,9 @@ #include "config.h" -#if defined(HAVE_LIBZ) && defined(WITH_LIBZ) - -#include <zlib.h> #include <string.h> #include <stdlib.h> +#include <zlib.h> #include "libssh/priv.h" #include "libssh/buffer.h" @@ -220,5 +218,4 @@ int decompress_buffer(ssh_session session,ssh_buffer buf, size_t maxlen){ return 0; } -#endif /* HAVE_LIBZ && WITH_LIBZ */ /* vim: set ts=2 sw=2 et cindent: */ |