X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/2a10b70b1cdbd55e9f2c26ed52dcff5255cd6e96..a9f0ad12d639cdb5186f0482d2856278b41671a2:/server/rescan.c diff --git a/server/rescan.c b/server/rescan.c index 45f5a65..53c566c 100644 --- a/server/rescan.c +++ b/server/rescan.c @@ -34,6 +34,7 @@ #include #include #include +#include #include "configuration.h" #include "syscalls.h" @@ -305,7 +306,10 @@ static void do_all(void (*fn)(const struct collection *c)) { /** @brief Expire noticed.db */ static void expire_noticed(void) { - error(0, "expire_noticed not implemented yet TODO"); + time_t now; + + time(&now); + trackdb_expire_noticed(now - config->noticed_history * 86400); } int main(int argc, char **argv) {