X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=string.c;h=9ad6bfb8edd7e616e61c16acec38f9a4d5bdb8e3;hp=0a55ed20c299144aeaf048a3c98db5dafdae4978;hb=ae0e4594c6a0312c5b4b4c0bde86f9c12253d11b;hpb=50c9de2ed8746a83002f51e74eae7b0378e1785e diff --git a/string.c b/string.c index 0a55ed20..9ad6bfb8 100644 --- a/string.c +++ b/string.c @@ -253,8 +253,11 @@ void chop(char *buf) __must_check __malloc char *para_tmpname(void) { struct timeval now; + unsigned int seed; + gettimeofday(&now, NULL); - srand(now.tv_usec); + seed = now.tv_usec; + srand(seed); return make_message("%08i", rand()); }