diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-10-18 19:53:31 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-10-18 19:53:46 +0100 |
commit | 98388a5b3b0c609b97861dd872fc6db1c3df7ec6 (patch) | |
tree | 0cdaf95ae0e55fd39e2ca120cf7642404e7984ce /contrib | |
parent | f95568fa1fd78120b19e9926de289982b7e5a65c (diff) | |
download | rspamd-98388a5b3b0c609b97861dd872fc6db1c3df7ec6.tar.gz rspamd-98388a5b3b0c609b97861dd872fc6db1c3df7ec6.zip |
[Minor] Ignore atime change in ev_stat
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/libev/ev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libev/ev.c b/contrib/libev/ev.c index e569a010c..886a45ed1 100644 --- a/contrib/libev/ev.c +++ b/contrib/libev/ev.c @@ -5034,7 +5034,7 @@ stat_timer_cb (EV_P_ ev_timer *w_, int revents) || prev.st_gid != w->attr.st_gid || prev.st_rdev != w->attr.st_rdev || prev.st_size != w->attr.st_size - || prev.st_atime != w->attr.st_atime + /* || prev.st_atime != w->attr.st_atime */ /* Rspamd: to avoid constant maps reload */ || prev.st_mtime != w->attr.st_mtime || prev.st_ctime != w->attr.st_ctime ) { |