summaryrefslogtreecommitdiffstats
path: root/crypto/comp/comp_lib.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-12-08 02:39:38 +0000
committerRichard Levitte <levitte@openssl.org>2002-12-08 02:39:38 +0000
commit86a62cf15c5aa087a950ae82c65bb22e932e46c0 (patch)
tree4defb6b4dd29b34608f5b3031d3ca23fadbf496c /crypto/comp/comp_lib.c
parentb11405723d04bea51eced9a81343ad7c19d33823 (diff)
Implement a stateful variant if the ZLIB compression method. The old
stateless variant is kept, but isn't used anywhere.
Diffstat (limited to 'crypto/comp/comp_lib.c')
-rw-r--r--crypto/comp/comp_lib.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/crypto/comp/comp_lib.c b/crypto/comp/comp_lib.c
index beb98ce8cc..b60ae371e8 100644
--- a/crypto/comp/comp_lib.c
+++ b/crypto/comp/comp_lib.c
@@ -20,17 +20,11 @@ COMP_CTX *COMP_CTX_new(COMP_METHOD *meth)
OPENSSL_free(ret);
ret=NULL;
}
-#if 0
- else
- CRYPTO_new_ex_data(rsa_meth,(char *)ret,&ret->ex_data);
-#endif
return(ret);
}
void COMP_CTX_free(COMP_CTX *ctx)
{
- /* CRYPTO_free_ex_data(rsa_meth,(char *)ctx,&ctx->ex_data); */
-
if(ctx == NULL)
return;