Index: ossp-pkg/uuid/uuid_prng.c RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_prng.c,v rcsdiff -q -kk '-r1.7' '-r1.8' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_prng.c,v' 2>/dev/null --- uuid_prng.c 2005/08/30 18:41:56 1.7 +++ uuid_prng.c 2005/08/30 19:25:04 1.8 @@ -130,9 +130,9 @@ /* approach 2: try to gather data via weaker libc PRNG API. */ while (n > 0) { /* gather new entropy */ - (void)gettimeofday(&(entropy.tv), NULL); - entropy.cnt = prng->cnt++; - entropy.rnd = rand(); + (void)gettimeofday(&(entropy.tv), NULL); /* source: libc time */ + entropy.rnd = rand(); /* source: libc PRNG */ + entropy.cnt = prng->cnt++; /* source: local counter */ /* pass entropy into MD5 engine */ if (md5_update(prng->md5, (void *)&entropy, sizeof(entropy)) != MD5_RC_OK)