From 5ca567a18caf699f93495ba2bc3749fb5f65383b Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Sat, 16 Dec 2023 16:29:05 +0100 Subject: [PATCH] S2S-TLS: Add missing CAFile and CRLFile options to "configtest" output --- src/ngircd/conf.c | 4 ++++ 1 file changed, 4 insertions(+) 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 -- 2.39.2