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/kex.c | |
parent | 7202a26b6ce9dc30a3764ce177337051d5136bcf (diff) | |
download | libssh-dc42a1757fdbbf5b0ffd877649b6cf08b1385420.tar.gz libssh-dc42a1757fdbbf5b0ffd877649b6cf08b1385420.tar.xz libssh-dc42a1757fdbbf5b0ffd877649b6cf08b1385420.zip |
gzip: Fix zlib support.
Diffstat (limited to 'src/kex.c')
-rw-r--r-- | src/kex.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -58,7 +58,7 @@ #define DES "3des-cbc" #endif -#if defined(HAVE_LIBZ) && defined(WITH_LIBZ) +#ifdef WITH_LIBZ #define ZLIB "none,zlib,zlib@openssh.com" #else #define ZLIB "none" |