]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
#198 bug fixups.
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 21 Jul 2008 07:59:29 +0000 (07:59 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 21 Jul 2008 07:59:29 +0000 (07:59 +0000)
git-svn-id: file:///svn/unbound/branches/support-1.0@1162 be551aaa-1e26-0410-a405-d3ace91eadb9

doc/Changelog
doc/unbound.conf.5.in
util/random.c

index 736655822692d734add272cb1e29e47e0c43fc98..6bc8d2b2987b4cf4156aa612de1b3516deac526b 100644 (file)
@@ -1,3 +1,6 @@
+21 July 2008: Wouter
+       - #198: nicer entropy warning message. manpage OS hints.
+
 19 July 2008: Wouter
        - #198: fixup manpage to suggest entropy chroot fix.
 
index d64bb60a596ec116ee9ea036359822def86a5efc..7ea02df633d1ba4e856370fd2321d5947b4448a7 100644 (file)
@@ -51,7 +51,8 @@ server:
        directory: "/etc/unbound"
        username: unbound       # make sure it can write to pidfile.
        # make sure unbound can access entropy from inside the chroot.
-       # i.e. mount --bind -n /dev/random /etc/unbound/dev/random
+       # e.g. on linux the use these commands (on BSD, devfs(8) is used):
+       #      mount --bind -n /dev/random /etc/unbound/dev/random
        # and  mount --bind -n /dev/log /etc/unbound/dev/log
        chroot: "/etc/unbound"
        # logfile: "/etc/unbound/unbound.log"  #uncomment to use logfile.
index 39fdd731e3d3079c3c145d916ead9c336d929f47..3863837520238e900ad5baa682457d8630f252a7 100644 (file)
@@ -122,7 +122,8 @@ ub_initstate(unsigned int seed, struct ub_randstate* from)
                                ERR_get_error());
                        return NULL;
                }
-               verbose(VERB_OPS, "openssl has no entropy, seeding with time");
+               verbose(VERB_OPS, "openssl has no entropy, seeding with time"
+                       " and pid");
        }
        ub_arc4random_stir(s, from);
        return s;