summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2023-12-16 16:29:05 +0100
committerAlexander Barton <alex@barton.de>2024-03-23 20:19:01 +0100
commit5ca567a18caf699f93495ba2bc3749fb5f65383b (patch)
tree6f94e327fd48f66a38f378de11201a6f97d67ffb
parent817937b218c4b57515f54216ebc936cd69df0aae (diff)
downloadngircd-5ca567a18caf699f93495ba2bc3749fb5f65383b.tar.gz
ngircd-5ca567a18caf699f93495ba2bc3749fb5f65383b.zip
S2S-TLS: Add missing CAFile and CRLFile options to "configtest" output
-rw-r--r--src/ngircd/conf.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c
index 3174c88d..86a62247 100644
--- a/src/ngircd/conf.c
+++ b/src/ngircd/conf.c
@@ -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