mirror of
https://github.com/osmarks/ngircd.git
synced 2024-12-12 09:50:29 +00:00
S2S-TLS: Add missing CAFile and CRLFile options to "configtest" output
This commit is contained in:
parent
817937b218
commit
5ca567a18c
@ -442,10 +442,14 @@ Conf_Test( void )
|
|||||||
|
|
||||||
#ifdef SSL_SUPPORT
|
#ifdef SSL_SUPPORT
|
||||||
puts("[SSL]");
|
puts("[SSL]");
|
||||||
|
printf(" CAFile = %s\n", Conf_SSLOptions.CAFile
|
||||||
|
? Conf_SSLOptions.CAFile : "");
|
||||||
printf(" CertFile = %s\n", Conf_SSLOptions.CertFile
|
printf(" CertFile = %s\n", Conf_SSLOptions.CertFile
|
||||||
? Conf_SSLOptions.CertFile : "");
|
? Conf_SSLOptions.CertFile : "");
|
||||||
printf(" CipherList = %s\n", Conf_SSLOptions.CipherList ?
|
printf(" CipherList = %s\n", Conf_SSLOptions.CipherList ?
|
||||||
Conf_SSLOptions.CipherList : DEFAULT_CIPHERS);
|
Conf_SSLOptions.CipherList : DEFAULT_CIPHERS);
|
||||||
|
printf(" CRLFile = %s\n", Conf_SSLOptions.CRLFile
|
||||||
|
? Conf_SSLOptions.CRLFile : "");
|
||||||
printf(" DHFile = %s\n", Conf_SSLOptions.DHFile
|
printf(" DHFile = %s\n", Conf_SSLOptions.DHFile
|
||||||
? Conf_SSLOptions.DHFile : "");
|
? Conf_SSLOptions.DHFile : "");
|
||||||
printf(" KeyFile = %s\n", Conf_SSLOptions.KeyFile
|
printf(" KeyFile = %s\n", Conf_SSLOptions.KeyFile
|
||||||
|
Loading…
Reference in New Issue
Block a user