]> arthur.barton.de Git - ngircd-alex.git/commitdiff
S2S-TLS: Add missing CAFile and CRLFile options to "configtest" output
authorAlexander Barton <alex@barton.de>
Sat, 16 Dec 2023 15:29:05 +0000 (16:29 +0100)
committerAlexander Barton <alex@barton.de>
Sat, 23 Mar 2024 19:19:01 +0000 (20:19 +0100)
src/ngircd/conf.c

index 3174c88d504693faf1ec4e1ebf02c107dccd2047..86a622475c7d0a54dee7ac5b99be9d087271085c 100644 (file)
@@ -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