Skip to content
Snippets Groups Projects
Commit 62a788ca authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Set the "changes" flag when configuring a sub's fido address

This fixes issue #194 reported by mlong.
parent 938c4ee1
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #993 passed
...@@ -1373,8 +1373,10 @@ void sub_cfg(uint grpnum) ...@@ -1373,8 +1373,10 @@ void sub_cfg(uint grpnum)
} }
opt[n][0]=0; opt[n][0]=0;
n = uifc.list(WIN_RHT|WIN_SAV|WIN_ACT|WIN_INSACT, 0, 0, 0, &k, NULL, "FidoNet Address", opt); n = uifc.list(WIN_RHT|WIN_SAV|WIN_ACT|WIN_INSACT, 0, 0, 0, &k, NULL, "FidoNet Address", opt);
if(n >= 0 && n < cfg.total_faddrs) if(n >= 0 && n < cfg.total_faddrs) {
cfg.sub[i]->faddr = cfg.faddr[n]; cfg.sub[i]->faddr = cfg.faddr[n];
uifc.changes = TRUE;
}
break; break;
} }
case 8: case 8:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment