428 |
|
fprintf(stderr, "ERROR: Could not initialize the SSL Server context -- %s\n", s); |
429 |
|
ilog(LOG_TYPE_IRCD, "ERROR: Could not initialize the SSL Server context -- %s\n", s); |
430 |
|
exit(EXIT_FAILURE); |
431 |
+ |
return; /* Not reached */ |
432 |
|
} |
433 |
|
|
434 |
|
SSL_CTX_set_options(ConfigServerInfo.server_ctx, SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3|SSL_OP_NO_TICKET); |
458 |
|
fprintf(stderr, "ERROR: Could not initialize the SSL Client context -- %s\n", s); |
459 |
|
ilog(LOG_TYPE_IRCD, "ERROR: Could not initialize the SSL Client context -- %s\n", s); |
460 |
|
exit(EXIT_FAILURE); |
461 |
+ |
return; /* Not reached */ |
462 |
|
} |
463 |
|
|
464 |
|
SSL_CTX_set_options(ConfigServerInfo.client_ctx, SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3|SSL_OP_NO_TICKET); |