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

Log the error number when failing to open sbbsecho.ini

parent 22e8d2e3
Branches
Tags
No related merge requests found
......@@ -40,7 +40,7 @@ function SBBSEchoCfg ()
ecfg = new File(file_cfgname(system.ctrl_dir, 'sbbsecho.ini'));
if (!ecfg.open("r"))
throw new Error("Unable to open '"+ecfg.name+"'");
throw new Error(ecfg.error + " opening '"+ecfg.name+"'");
this.inbound = backslash(ecfg.iniGetValue(null, "Inbound", "../fido/nonsecure"));
if (this.inbound !== null)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment