diff --git a/src/sbbs3/scfglib1.c b/src/sbbs3/scfglib1.c index 3bb2dc7f1550e7b047e9c604ed1dfe015651df81..122ec6760b695a7b004e90070abc768591545810 100644 --- a/src/sbbs3/scfglib1.c +++ b/src/sbbs3/scfglib1.c @@ -560,7 +560,7 @@ BOOL read_msgs_cfg(scfg_t* cfg, char* error, size_t maxerrlen) SAFECOPY(cfg->sys_inetaddr, iniGetString(section, NULL, "addr", "", value)); SAFECOPY(cfg->inetmail_sem, iniGetString(section, NULL, "netmail_sem", "", value)); SAFECOPY(cfg->smtpmail_sem, iniGetString(section, NULL, "smtp_sem", "", value)); - cfg->inetmail_misc = iniGetUInteger(section, NULL, "settings", 0); + cfg->inetmail_misc = iniGetUInteger(section, NULL, "netmail_settings", 0); cfg->inetmail_cost = iniGetUInt32(section, NULL, "cost", 0); iniFreeStringList(ini); diff --git a/src/sbbs3/scfgsave.c b/src/sbbs3/scfgsave.c index 2dbb579099b66dadc56ea4a538e0c02b93ba63fa..8d43ec5ba83edda19d8d092ac3f72ab6a06e16d7 100644 --- a/src/sbbs3/scfgsave.c +++ b/src/sbbs3/scfgsave.c @@ -501,7 +501,7 @@ BOOL write_msgs_cfg(scfg_t* cfg, int backup_level) str_list_t section = strListInit(); iniSetString(§ion, name, "addr", cfg->sys_inetaddr, NULL); /* Internet address */ iniSetString(§ion, name, "netmail_sem", cfg->inetmail_sem, NULL); - iniSetHexInt(§ion, name, "settings", cfg->inetmail_misc, NULL); + iniSetHexInt(§ion, name, "netmail_settings", cfg->inetmail_misc, NULL); iniSetUInt32(§ion, name, "cost", cfg->inetmail_cost, NULL); iniSetString(§ion, name, "smtp_sem", cfg->smtpmail_sem, NULL); strListMerge(&ini, section);