mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 08:36:28 +03:00
Merge pull request #194 from qnox/configuration_reload_fix
fixed configuration reload
This commit is contained in:
@@ -2147,9 +2147,12 @@ int fake_clock_gettime(clockid_t clk_id, struct timespec *tp)
|
||||
}
|
||||
}
|
||||
|
||||
struct timespec current_ts;
|
||||
DONT_FAKE_TIME((*real_clock_gettime)(CLOCK_REALTIME, ¤t_ts));
|
||||
|
||||
if (last_data_fetch > 0)
|
||||
{
|
||||
if ((tp->tv_sec - last_data_fetch) > cache_duration)
|
||||
if ((current_ts.tv_sec - last_data_fetch) > cache_duration)
|
||||
{
|
||||
cache_expired = 1;
|
||||
}
|
||||
@@ -2184,7 +2187,7 @@ int fake_clock_gettime(clockid_t clk_id, struct timespec *tp)
|
||||
snprintf(user_faked_time, BUFFERLEN, "+0");
|
||||
}
|
||||
|
||||
last_data_fetch = tp->tv_sec;
|
||||
last_data_fetch = current_ts.tv_sec;
|
||||
/* fake time supplied as environment variable? */
|
||||
if (parse_config_file)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user