commit e3a1a618683da1ff6d98565de71e716a5d112e34 from: Federico G. Schwindt via: Alexander Barton date: Wed Sep 26 22:05:07 2012 UTC Change variable name "SSLDHFile" to "DHFile" in log messages (cherry picked from commit d96db0a2e56d310177edb45d0a8b164a37992ab1) commit - 1a2bdd9e4cb31125792482b8b6d8bfcf56cd115a commit + e3a1a618683da1ff6d98565de71e716a5d112e34 blob - fcf0dabb7df09780d518486d46c2112ac854db14 blob + 59729e046628213937d932021591fd987c7b265b --- src/ngircd/conn-ssl.c +++ src/ngircd/conn-ssl.c @@ -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) {