summaryrefslogtreecommitdiffstats
path: root/libuuid/src/gen_uuid.c
diff options
context:
space:
mode:
Diffstat (limited to 'libuuid/src/gen_uuid.c')
-rw-r--r--libuuid/src/gen_uuid.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libuuid/src/gen_uuid.c b/libuuid/src/gen_uuid.c
index 613da0207..02e7f497e 100644
--- a/libuuid/src/gen_uuid.c
+++ b/libuuid/src/gen_uuid.c
@@ -235,8 +235,7 @@ static int get_clock(uint32_t *clock_high, uint32_t *clock_low,
if (state_fd == -2) {
save_umask = umask(0);
- state_fd = open("/var/lib/libuuid/clock.txt",
- O_RDWR|O_CREAT, 0660);
+ state_fd = open(LIBUUID_CLOCK_FILE, O_RDWR|O_CREAT, 0660);
(void) umask(save_umask);
if (state_fd != -1) {
state_f = fdopen(state_fd, "r+");