From 6a5d4ddeb6aaa63b958aed6ad9a84b1400530ecc Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Sat, 16 Dec 2023 16:29:05 +0100 Subject: [PATCH 03/20] S2S-TLS: Add missing CAFile and CRLFile options to "configtest" output (cherry picked from commit 5ca567a18caf699f93495ba2bc3749fb5f65383b) --- src/ngircd/conf.c | 4 ++++ 1 file changed, 4 insertions(+) --- a/src/ngircd/conf.c +++ b/src/ngircd/conf.c @@ -441,10 +441,14 @@ #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