mirror of
https://github.com/NixOS/nix
synced 2025-06-30 11:43:15 +02:00
Use rand
not random
for creating GC root indirect links
I don't think fewer bits matters for this, and `rand` but not `random` is available on Windows.
This commit is contained in:
parent
538eb2617a
commit
3a3c205fa7
2 changed files with 3 additions and 2 deletions
|
@ -41,7 +41,7 @@ static void makeSymlink(const Path & link, const Path & target)
|
|||
createDirs(dirOf(link));
|
||||
|
||||
/* Create the new symlink. */
|
||||
Path tempLink = fmt("%1%.tmp-%2%-%3%", link, getpid(), random());
|
||||
Path tempLink = fmt("%1%.tmp-%2%-%3%", link, getpid(), rand());
|
||||
createSymlink(target, tempLink);
|
||||
|
||||
/* Atomically replace the old one. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue