commit | 4ad378ea4329255adae942393413751b33beeaaf | [log] [tgz] |
---|---|---|
author | Bodo Möller <bodo@openssl.org> | Fri Sep 24 20:27:20 1999 +0000 |
committer | Bodo Möller <bodo@openssl.org> | Fri Sep 24 20:27:20 1999 +0000 |
tree | 8b427fbed6fef31ae4692d852fd9479b69ae715d | |
parent | 0ca6d7c6b1e73d17ca67b7ffd8435bde43bf50af [diff] [blame] |
Bugfix: avoid opening CAfile when it's NULL.
diff --git a/apps/s_server.c b/apps/s_server.c index 3ed008c..e54593d 100644 --- a/apps/s_server.c +++ b/apps/s_server.c
@@ -699,7 +699,8 @@ SSL_CTX_set_session_id_context(ctx,(void*)&s_server_session_id_context, sizeof s_server_session_id_context); - SSL_CTX_set_client_CA_list(ctx,SSL_load_client_CA_file(CAfile)); + if (CAfile != NULL) + SSL_CTX_set_client_CA_list(ctx,SSL_load_client_CA_file(CAfile)); BIO_printf(bio_s_out,"ACCEPT\n"); if (www)