| 12345678910111213141516171819202122232425262728 |
- From b50be568a0d4d67532b3539eb00908473ff6d956 Mon Sep 17 00:00:00 2001
- From: Alexander Barton <alex@barton.de>
- 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
|