Browse Source

Notify the user that her computer is generating numbers.

George Kadianakis 14 years ago
parent
commit
bdeb797a13
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/common/crypto.c

+ 2 - 1
src/common/crypto.c

@@ -1989,7 +1989,8 @@ crypto_set_tls_dh_prime(const char *dynamic_prime_fname)
     tls_prime = crypto_get_stored_dynamic_prime(dynamic_prime_fname);
 
     if (!tls_prime) {
-      log_info(LD_OR, "Generating fresh dynamic prime.");
+      log_notice(LD_OR, "Generating fresh dynamic prime. "
+                 "This might take a while...");
       tls_prime = crypto_generate_dynamic_prime();
     }
   } else { /* use the static DH prime modulus used by Apache in mod_ssl: */