From: Dr. Stephen Henson Date: Mon, 3 Dec 2012 03:33:44 +0000 (+0000) Subject: if no error code and -brief selected print out connection closed instead of read... X-Git-Tag: master-post-reformat~1553 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=66d9f2e5210b7f68c4ac9ffebedca031c05ec487;ds=sidebyside if no error code and -brief selected print out connection closed instead of read error --- diff --git a/apps/s_client.c b/apps/s_client.c index 1a8f8ac844..9c852e4eda 100644 --- a/apps/s_client.c +++ b/apps/s_client.c @@ -1912,7 +1912,10 @@ printf("read=%d pending=%d peek=%d\n",k,SSL_pending(con),SSL_peek(con,zbuf,10240 break; case SSL_ERROR_SYSCALL: ret=get_last_socket_error(); - BIO_printf(bio_err,"read:errno=%d\n",ret); + if (ret == 0 && c_brief) + BIO_puts(bio_err, "CONNECTION CLOSED BY SERVER\n"); + else + BIO_printf(bio_err,"read:errno=%d\n",ret); goto shut; case SSL_ERROR_ZERO_RETURN: BIO_printf(bio_c_out,"closed\n");