mirror of
https://github.com/openssl/openssl.git
synced 2024-12-11 11:04:03 +08:00
contify
This commit is contained in:
parent
96a4cf8c29
commit
95bba34b83
@ -609,9 +609,9 @@ int MAIN(int argc, char **argv)
|
||||
#endif
|
||||
#ifndef OPENSSL_NO_TLSEXT
|
||||
char *servername = NULL;
|
||||
char *curves=NULL;
|
||||
char *sigalgs=NULL;
|
||||
char *client_sigalgs=NULL;
|
||||
const char *curves=NULL;
|
||||
const char *sigalgs=NULL;
|
||||
const char *client_sigalgs=NULL;
|
||||
tlsextctx tlsextcbp =
|
||||
{NULL,0};
|
||||
# ifndef OPENSSL_NO_NEXTPROTONEG
|
||||
@ -1262,7 +1262,7 @@ bad:
|
||||
|
||||
#ifndef OPENSSL_NO_TLSEXT
|
||||
if (curves != NULL)
|
||||
if(!SSL_CTX_set1_curves_list(ctx,curves)) {
|
||||
if(!SSL_CTX_set1_curves_list(ctx, curves)) {
|
||||
BIO_printf(bio_err,"error setting curve list\n");
|
||||
ERR_print_errors(bio_err);
|
||||
goto end;
|
||||
|
@ -277,9 +277,9 @@ static int s_server_session_id_context = 1; /* anything will do */
|
||||
static const char *s_cert_file=TEST_CERT,*s_key_file=NULL, *s_chain_file=NULL;
|
||||
#ifndef OPENSSL_NO_TLSEXT
|
||||
static const char *s_cert_file2=TEST_CERT2,*s_key_file2=NULL;
|
||||
static char *curves=NULL;
|
||||
static char *sigalgs=NULL;
|
||||
static char *client_sigalgs=NULL;
|
||||
static const char *curves=NULL;
|
||||
static const char *sigalgs=NULL;
|
||||
static const char *client_sigalgs=NULL;
|
||||
#endif
|
||||
static char *s_dcert_file=NULL,*s_dkey_file=NULL, *s_dchain_file=NULL;
|
||||
#ifdef FIONBIO
|
||||
|
Loading…
Reference in New Issue
Block a user