diff options
-rw-r--r-- | src/haveged.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/haveged.c b/src/haveged.c index 02c6c81..689ff83 100644 --- a/src/haveged.c +++ b/src/haveged.c @@ -675,8 +675,8 @@ static void run_daemon( /* RETURN: nothing */ error_exit("Stopping due to signal %d\n", params->exit_code - 128); t[1] = time(NULL); - if (t[1] - t[0] > 600) { - /* add entropy on daemon start and then every 600 seconds unconditionally */ + if (t[1] - t[0] > 60) { + /* add entropy on daemon start and then every 60 seconds unconditionally */ nbytes = poolSize; r = (nbytes+sizeof(H_UINT)-1)/sizeof(H_UINT); fills = h->n_fills; |