426 |
|
const char *s = ERR_lib_error_string(ERR_get_error()); |
427 |
|
|
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); |
429 |
> |
ilog(LOG_TYPE_IRCD, "ERROR: Could not initialize the SSL Server context -- %s", s); |
430 |
|
exit(EXIT_FAILURE); |
431 |
|
return; /* Not reached */ |
432 |
|
} |
456 |
|
const char *s = ERR_lib_error_string(ERR_get_error()); |
457 |
|
|
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); |
459 |
> |
ilog(LOG_TYPE_IRCD, "ERROR: Could not initialize the SSL Client context -- %s", s); |
460 |
|
exit(EXIT_FAILURE); |
461 |
|
return; /* Not reached */ |
462 |
|
} |