The name was misleading because the function actually archives offline
journals, ie it doesn't try to remove them to make some room.
No functional change.
}
}
-static int vacuum_offline_user_journals(Server *s) {
+static int server_archive_offline_user_journals(Server *s) {
_cleanup_closedir_ DIR *d = NULL;
int r;
/* Finally, also rotate all user journals we currently do not have open. (But do so only if we
* actually have access to /var, i.e. are not in the log-to-runtime-journal mode). */
if (!s->runtime_journal)
- (void) vacuum_offline_user_journals(s);
+ (void) server_archive_offline_user_journals(s);
server_process_deferred_closes(s);
}