diff options
author | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2013-01-17 11:09:19 +0000 |
---|---|---|
committer | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2013-01-17 11:09:19 +0000 |
commit | d6343532bc128851ddf38d804f8e2e9a228986fa (patch) | |
tree | 23f899f7e4f87c465ab3419208522e9abc705aa1 /src | |
parent | 66d60a29c1917bbc9b000d95e0c79c1546c1de0d (diff) |
-no need to be nice
git-svn-id: https://gnunet.org/svn/gnunet@25811 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src')
-rw-r--r-- | src/util/crypto_random.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/crypto_random.c b/src/util/crypto_random.c index 29b25524dc..b61d596135 100644 --- a/src/util/crypto_random.c +++ b/src/util/crypto_random.c @@ -286,7 +286,7 @@ entropy_generator (void *cls, const char *what, int printchar, int current, { if (genproc != NULL) { - if (0 != GNUNET_OS_process_kill (genproc, SIGTERM)) + if (0 != GNUNET_OS_process_kill (genproc, SIGKILL)) LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR, "kill"); GNUNET_break (GNUNET_OK == GNUNET_OS_process_wait (genproc)); GNUNET_OS_process_destroy (genproc); @@ -304,7 +304,7 @@ entropy_generator (void *cls, const char *what, int printchar, int current, GNUNET_break (0); return; } - if (0 != GNUNET_OS_process_kill (genproc, SIGTERM)) + if (0 != GNUNET_OS_process_kill (genproc, SIGKILL)) LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR, "kill"); GNUNET_break (GNUNET_OK == GNUNET_OS_process_wait (genproc)); GNUNET_OS_process_destroy (genproc); |