1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-27 20:36:18 +00:00

S2S-TLS: Add missing CAFile and CRLFile options to "configtest" output

This commit is contained in:
Alexander Barton 2023-12-16 16:29:05 +01:00
parent 817937b218
commit 5ca567a18c

View File

@ -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