]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Change variable name "SSLDHFile" to "DHFile" in log messages
authorFederico G. Schwindt <fgsch@lodoss.net>
Tue, 18 Sep 2012 23:52:50 +0000 (00:52 +0100)
committerAlexander Barton <alex@barton.de>
Wed, 26 Sep 2012 22:05:07 +0000 (00:05 +0200)
(cherry picked from commit d96db0a2e56d310177edb45d0a8b164a37992ab1)

src/ngircd/conn-ssl.c

index fcf0dabb7df09780d518486d46c2112ac854db14..59729e046628213937d932021591fd987c7b265b 100644 (file)
@@ -156,7 +156,7 @@ Load_DH_params(void)
        bool ret = true;
 
        if (!Conf_SSLOptions.DHFile) {
-               Log(LOG_NOTICE, "Configuration option \"SSLDHFile\" not set!");
+               Log(LOG_NOTICE, "Configuration option \"DHFile\" not set!");
                return false;
        }
        fp = fopen(Conf_SSLOptions.DHFile, "r");
@@ -201,7 +201,7 @@ Load_DH_params(void)
        }
        if (need_dhgenerate) {
                Log(LOG_WARNING,
-                   "SSLDHFile not set, generating %u bit DH parameters. This may take a while ...",
+                   "DHFile not set, generating %u bit DH parameters. This may take a while ...",
                    DH_BITS);
                err = gnutls_dh_params_generate2(tmp_dh_params, DH_BITS);
                if (err < 0) {