Added permanent permissions

Finally implemented the permanent permission tables using sqlite3. For
now, performance wasn't a consideration. There are a lot of
optimizations that could be made, like having prepared queries. The code
remains fairly untested.
This commit is contained in:
BritishTeapot
2025-03-30 19:06:57 +02:00
parent 4ce97555e4
commit 7e111b16b7
5 changed files with 253 additions and 22 deletions

View File

@@ -38,7 +38,7 @@ int main(int argc, char *argv[]) {
ret = init_ui_socket();
if (ret != 0) {
perror("init_ui_socket");
fprintf(stderr, "Could not initalize ui-socket.\n");
exit(EXIT_FAILURE);
}