Skip to content

Commit

Permalink
S2S-TLS: Add missing CAFile and CRLFile options to "configtest" output
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarton committed Mar 23, 2024
1 parent 817937b commit 5ca567a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/ngircd/conf.c
Expand Up @@ -442,10 +442,14 @@ Conf_Test( void )

#ifdef SSL_SUPPORT
puts("[SSL]");
printf(" CAFile = %s\n", Conf_SSLOptions.CAFile
? Conf_SSLOptions.CAFile : "");
printf(" CertFile = %s\n", Conf_SSLOptions.CertFile
? Conf_SSLOptions.CertFile : "");
printf(" CipherList = %s\n", Conf_SSLOptions.CipherList ?
Conf_SSLOptions.CipherList : DEFAULT_CIPHERS);
printf(" CRLFile = %s\n", Conf_SSLOptions.CRLFile
? Conf_SSLOptions.CRLFile : "");
printf(" DHFile = %s\n", Conf_SSLOptions.DHFile
? Conf_SSLOptions.DHFile : "");
printf(" KeyFile = %s\n", Conf_SSLOptions.KeyFile
Expand Down

0 comments on commit 5ca567a

Please sign in to comment.