Roxen.git/
server/
base_server/
fsgc.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2017-11-16
2017-11-16 15:33:29 by Henrik Grubbström (Grubba) <grubba@grubba.org>
1d38ee6a95a03d855345840998481f12245c919a (
7
lines) (+
5
/-
2
)
[
Show
|
Annotate
]
Branch:
patches/ep302
FSGC: Fixed some typos.
369:
if (st->mtime >= time(1) - stable_time) { GC_WERR("FSGC: Keeping file: %O\n", path); // Remove the stable notification marker, and reschedule.
-
last_change = st->mtime;
-
update(st);
+
Monitor m = monitor(path, MF_AUTO);
+
m->
last_change = st->mtime;
+
// m->
update(st);
+
m->check(); // Force an update().
return; } rm(path);