diff options
author | Matt Johnston <matt@ucc.asn.au> | 2005-11-08 11:35:52 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2005-11-08 11:35:52 +0000 |
commit | 0314b2cf455f0fb16302b2e1152994ff283fb1c5 (patch) | |
tree | 278fdd2745cb66698385ee027dafe2ae9be0491a /common-algo.c | |
parent | f1d36b19702b6af35df2801d0c51eb113ee81495 (diff) |
* common-algo.c: use zlib for dbclient
--HG--
extra : convert_revision : 71c8d2ac84129e8aa204e7e35a44066fd1bea584
Diffstat (limited to 'common-algo.c')
-rw-r--r-- | common-algo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common-algo.c b/common-algo.c index 6ce1a37..ae2102a 100644 --- a/common-algo.c +++ b/common-algo.c @@ -120,10 +120,10 @@ algo_type sshhashes[] = { }; algo_type sshcompress[] = { - {"none", DROPBEAR_COMP_NONE, NULL, 1}, #ifndef DISABLE_ZLIB {"zlib", DROPBEAR_COMP_ZLIB, NULL, 1}, #endif + {"none", DROPBEAR_COMP_NONE, NULL, 1}, {NULL, 0, NULL, 0} }; |