summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_txt.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-06-30 22:26:28 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-06-30 22:26:28 +0000
commit76ec9151d12c53edf15d11f0a7c9658450af2cba (patch)
treee4c7bccaeaf4a06d5f19a2bb52826056bcdc46b4 /ssl/ssl_txt.c
parent6c24dd90055c77c73ca63576f13c9233cbec152d (diff)
Update from 0.9.8-stable.
Diffstat (limited to 'ssl/ssl_txt.c')
-rw-r--r--ssl/ssl_txt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/ssl_txt.c b/ssl/ssl_txt.c
index 070161021b..3122440e26 100644
--- a/ssl/ssl_txt.c
+++ b/ssl/ssl_txt.c
@@ -211,11 +211,11 @@ int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x)
ssl_cipher_get_evp(x,NULL,NULL,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
{
- if (BIO_printf(bp,"\n Compression: %d (%s)", comp->id,comp->method->name) <= 0) goto err;
+ if (BIO_printf(bp,"\n Compression: %d (%s)", comp->id,comp->method->name) <= 0) goto err;
}
}
#endif