lockfile: replace random() by rand()
commit1e9676ec0a771de06abca3009eb4bdc5a4ae3312
authorJohannes Sixt <j6t@kdbg.org>
Fri, 5 Jun 2015 19:45:04 +0000 (5 21:45 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 5 Jun 2015 22:00:31 +0000 (5 15:00 -0700)
tree71d95363d0c68e5b6a7d6570d01509d937d49a57
parentf4ab4f3ab117cf375ae7bb8908c7b5ad687342b1
lockfile: replace random() by rand()

On Windows, we do not have functions srandom() and random(). Use srand()
and rand(). These functions produce random numbers of lesser quality,
but for the purpose (a retry time-out) they are still good enough.

Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Reviewed-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
lockfile.c