From 1b20a7d881aa9a8bce05cb3ac1ff7ad7d73ef62b Mon Sep 17 00:00:00 2001
From: Rob Swindell <rob@synchro.net>
Date: Wed, 26 Oct 2022 16:59:12 -0700
Subject: [PATCH] Validation set property names are now more verbose (matching
 cnfdefs.js)

---
 src/sbbs3/scfgsave.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/sbbs3/scfgsave.c b/src/sbbs3/scfgsave.c
index 54347967de..ca8ab7c9f1 100644
--- a/src/sbbs3/scfgsave.c
+++ b/src/sbbs3/scfgsave.c
@@ -245,8 +245,8 @@ BOOL write_main_cfg(scfg_t* cfg, int backup_level)
 		iniSetHexInt(&section, name, "flags3", cfg->val_flags3[i], NULL);
 		iniSetHexInt(&section, name, "flags4", cfg->val_flags4[i], NULL);
 		iniSetUInt32(&section, name, "credits", cfg->val_cdt[i], NULL);
-		iniSetHexInt(&section, name, "exempt", cfg->val_exempt[i], NULL);
-		iniSetHexInt(&section, name, "rest", cfg->val_rest[i], NULL);
+		iniSetHexInt(&section, name, "exemptions", cfg->val_exempt[i], NULL);
+		iniSetHexInt(&section, name, "restrictions", cfg->val_rest[i], NULL);
 		strListMerge(&ini, section);
 		free(section);
 	}
-- 
GitLab