summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_txt.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-06-30 22:20:46 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-06-30 22:20:46 +0000
commite7e7f5de4bc79f99615ddefa254db3fc1108c9fd (patch)
tree682c4d0a3e3f331beb36e5e7f2f46414086aa2f9 /ssl/ssl_txt.c
parent3dfa7416cd0eb26d33b226d2793114e55b35d702 (diff)
PR: 1960
Approved by: steve@openssl.org Encode compression id in {i2d,d2i}_SSL_SESSION().
Diffstat (limited to 'ssl/ssl_txt.c')
-rw-r--r--ssl/ssl_txt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_txt.c b/ssl/ssl_txt.c
index 06b86750fd..b95344ae48 100644
--- a/ssl/ssl_txt.c
+++ b/ssl/ssl_txt.c
@@ -174,7 +174,7 @@ int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x)
ssl_cipher_get_evp(x,NULL,NULL,&comp);
if (comp == NULL)
{
- if (BIO_printf(bp,"\n Compression: %d",x->compress_meth) <= 0) goto err;
+ if (BIO_printf(bp,"\n Compression: %d",x->compress_meth) <= 0) goto err;
}
else
{