aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2015-04-26 16:43:18 -0400
committerRich Salz <rsalz@openssl.org>2015-04-26 16:43:18 -0400
commitce6766de69030b66634518e54dbd301308a51e11 (patch)
treecb9287194d27b6c9560f447b829f56930396aa66 /apps
parent88806cfc611935981e3752dccda1685022be2e2b (diff)
downloadopenssl-ce6766de69030b66634518e54dbd301308a51e11.tar.gz
Fix error message
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/s_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_server.c b/apps/s_server.c
index 20f63755da..e12db0c866 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -3197,7 +3197,7 @@ static int add_session(SSL *ssl, SSL_SESSION *session)
/* Assume it still works. */
if (i2d_SSL_SESSION(session, &p) != sess->derlen) {
- BIO_printf(bio_err, "Re-encoding session strangeness\n");
+ BIO_printf(bio_err, "Unexpected session encoding length\n");
OPENSSL_free(sess->id);
OPENSSL_free(sess->der);
OPENSSL_free(sess);