Add missing validator for database.useWAL

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER 2024-03-12 20:35:35 +01:00
parent 1bb74b3025
commit ac21427e55
No known key found for this signature in database
GPG Key ID: 00135ACBD90B28DD
1 changed files with 1 additions and 0 deletions

View File

@ -866,6 +866,7 @@ void initConfig(struct config *conf)
// (like the query database).
conf->database.useWAL.f = FLAG_ADVANCED_SETTING | FLAG_RESTART_FTL;
conf->database.useWAL.d.b = true;
conf->database.useWAL.c = validate_stub; // Only type-based checking
// sub-struct database.network
conf->database.network.parseARPcache.k = "database.network.parseARPcache";