Skip to content
Snippets Groups Projects
Commit 34d53bdf authored by Nigel Reed's avatar Nigel Reed
Browse files

Fix signature using wrong filename

There was a / missing so it would pick up userxxxx.sig rather
than user/xxxx.sig. This matches what is in write.cpp and
uedit.
parent a643f119
No related branches found
No related tags found
1 merge request!391Fix signature using wrong filename
Pipeline #5465 passed
......@@ -223,7 +223,7 @@ var main_cfg = cfglib.read("main.ini");
var thisuser = new User(argv[0] || user.number);
const userSigFilename = system.data_dir + "user" + format("%04d.sig", thisuser.number);
const userSigFilename = system.data_dir + "user/" + format("%04d.sig", thisuser.number);
const PETSCII_DELETE = '\x14';
const PETSCII_UPPERLOWER = 0x1d;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment