summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-10-13 09:55:50 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-10-13 09:55:50 +0000
commit0f210bd46abd3591f062e5412c260ef57098ae2a (patch)
tree7b78e21fccbca40540435645965f44adc5cd6b0e
parent458e18ffad053301c7648deec7ad1da6f873747c (diff)
downloadgnutls-0f210bd46abd3591f062e5412c260ef57098ae2a.tar.gz
ZLIB's number was changed according to draft-ietf-tls-compression-02
-rw-r--r--lib/gnutls_algorithms.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/gnutls_algorithms.c b/lib/gnutls_algorithms.c
index da131c584c..f8ff36d248 100644
--- a/lib/gnutls_algorithms.c
+++ b/lib/gnutls_algorithms.c
@@ -145,7 +145,8 @@ gnutls_compression_entry _gnutls_compression_algorithms[MAX_COMP_METHODS] =
{
GNUTLS_COMPRESSION_ENTRY(GNUTLS_COMP_NULL, 0x00, 0, 0, 0),
#ifdef HAVE_LIBZ
- GNUTLS_COMPRESSION_ENTRY(GNUTLS_COMP_ZLIB, 0xf1, 15, 8, 3),
+ /* draft-ietf-tls-compression-02 */
+ GNUTLS_COMPRESSION_ENTRY(GNUTLS_COMP_ZLIB, 0x01, 15, 8, 3),
#endif
{0}
};