snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 96830967e15bd6b1a89686c8c729b096ae6c4550
parent da18efd288bc8e69a0f755e576e3ba14dfedbcb3
Author: default <nobody@localhost>
Date:   Tue, 30 Apr 2024 09:14:03 +0200

Also purge lists.

Diffstat:
Mdata.c | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/data.c b/data.c @@ -3012,6 +3012,19 @@ void purge_user(snac *snac) srv_debug(1, xs_fmt("purge: %s %d", idx, gc)); } + /* purge lists */ + { + xs *spec = xs_fmt("%s/list/" "*.idx", snac->basedir); + xs *lol = xs_glob(spec, 0, 0); + int c = 0; + char *v; + + while (xs_list_next(lol, &v, &c)) { + int gc = index_gc(v); + srv_debug(1, xs_fmt("purge: %s %d", v, gc)); + } + } + /* unrelated to purging, but it's a janitorial process, so what the hell */ verify_links(snac); }