diff options
Diffstat (limited to 'openssl/apps/s_cb.c')
-rw-r--r-- | openssl/apps/s_cb.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/openssl/apps/s_cb.c b/openssl/apps/s_cb.c index 2cd73376d..84c3b447c 100644 --- a/openssl/apps/s_cb.c +++ b/openssl/apps/s_cb.c @@ -237,8 +237,8 @@ int set_cert_stuff(SSL_CTX *ctx, char *cert_file, char *key_file) /* If we are using DSA, we can copy the parameters from * the private key */ - - + + /* Now we know that a key and cert have been set against * the SSL context */ if (!SSL_CTX_check_private_key(ctx)) @@ -436,6 +436,8 @@ void MS_CALLBACK msg_cb(int write_p, int version, int content_type, const void * if (version == SSL3_VERSION || version == TLS1_VERSION || + version == TLS1_1_VERSION || + version == TLS1_2_VERSION || version == DTLS1_VERSION || version == DTLS1_BAD_VER) { |