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

Report correct filename in open failure error message

Fixes issue #476
parent 130c7fc0
No related branches found
No related tags found
No related merge requests found
......@@ -473,7 +473,7 @@ if(netname) {
var msgs_ini = new File(system.ctrl_dir + "msgs.ini");
print("Reading Message Area configuration file: " + msgs_ini.name);
if(!f.open(f.exists ? 'r+':'w+')) {
alert("Failed to read msgs.cnf");
alert("Failed to read " + msgs_ini.name);
exit(1);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment