diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2012-06-25 16:32:30 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2012-06-25 16:32:30 +0200 |
commit | 4453cd8c734349f4515eaa1b047464de0f34a1b5 (patch) | |
tree | 724963358f13bfc1b6f8c7986982875af95bb71d /apps/s_client.c | |
parent | sha512-x86_64.pl: add SIMD code paths. (diff) | |
download | openssl-4453cd8c734349f4515eaa1b047464de0f34a1b5.tar.xz openssl-4453cd8c734349f4515eaa1b047464de0f34a1b5.zip |
Reorganise supported signature algorithm extension processing.
Only store encoded versions of peer and configured signature algorithms.
Determine shared signature algorithms and cache the result along with NID
equivalents of each algorithm.
Diffstat (limited to 'apps/s_client.c')
-rw-r--r-- | apps/s_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_client.c b/apps/s_client.c index c2dce1febf..a971ad6a61 100644 --- a/apps/s_client.c +++ b/apps/s_client.c @@ -2064,7 +2064,7 @@ static void print_stuff(BIO *bio, SSL *s, int full) BIO_write(bio,"\n",1); } - ssl_print_sigalgs(bio, s); + ssl_print_sigalgs(bio, s, 1); BIO_printf(bio,"---\nSSL handshake has read %ld bytes and written %ld bytes\n", BIO_number_read(SSL_get_rbio(s)), |