Skip to content
Snippets Groups Projects
Commit c68f910b authored by rswindell's avatar rswindell
Browse files

Bug-fix: allow echocfg to set the [node:x] "route" key value.

parent bc3119d6
No related branches found
No related tags found
No related merge requests found
......@@ -448,6 +448,10 @@ bool sbbsecho_write_ini(sbbsecho_cfg_t* cfg)
iniSetBool(&ini ,section, "Notify" ,node->send_notify ,&style);
iniSetStringList(&ini,section, "Keys", "," ,node->keys ,&style);
iniSetEnum(&ini ,section, "Status" ,mailStatusStringList, node->status, &style);
if(node->route.zone)
iniSetString(&ini,section, "Route" ,faddrtoa(&node->route), &style);
else
iniRemoveKey(&ini,section, "Route");
}
/**************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment