Devs might want to reproduce "working" pathways that show slight
misbehaviour, not just crashing ones. The later print upon a crash/
fatal is left in, as the heads of logs can become separated from the
tails of logs quite easily, it's only one extra line per run.
Signed-off-by: Phil Carmody <phil@dovecot.fi>
static void
kiss_init(unsigned int seed)
{
- /* i_info("Random numbers are PRNG using kiss, seeded with %u", seed); */
+ i_info("Random numbers are PRNG using kiss, as per DOVECOT_SRAND=%u", seed);
kiss_seed = seed;
kiss_jsr = 0x5eed5eed; /* simply musn't be 0 */
kiss_z = 1 ^ (kiss_w = kiss_jcong = seed); /* w=z=0 is bad, see Rose */