diff --git a/lib/isc/unix/entropy.c b/lib/isc/unix/entropy.c index 2e929964a1..0e1bcc89cd 100644 --- a/lib/isc/unix/entropy.c +++ b/lib/isc/unix/entropy.c @@ -375,9 +375,6 @@ fillpool(isc_entropy_t *ent, unsigned int needed, isc_boolean_t blocking) { * others are always drained. */ - if (blocking) - printf("Waiting for %u bytes...\n", needed); - added = 0; remaining = needed; again: @@ -406,15 +403,11 @@ fillpool(isc_entropy_t *ent, unsigned int needed, isc_boolean_t blocking) { if (blocking && remaining != 0) { int fds; fds = wait_for_sources(ent); - printf("wait_for_sources() returned %d (%u of %u, %u remaining)\n", fds, added, needed, remaining); if (fds > 0) goto again; } - if (blocking) - printf("Got %u bytes...\n", added); - /* * Adjust counts. */