Write clean filename to .gxl
This commit is contained in:
parent
b425c81079
commit
9dac8c18b8
@ -12,6 +12,10 @@ ______________________________________________________________________
|
||||
Notes for GoldED+ 1.1.5, /snapshot/
|
||||
______________________________________________________________________
|
||||
|
||||
- To fix problem with related pathname in NODEPATH the Goldnode will
|
||||
write only filename in .gxl file. Most users should not notice this
|
||||
change at all.
|
||||
|
||||
- InternetReply should only affect netmail areas. Fixed.
|
||||
|
||||
- Fixed more bugs with block deletion undo.
|
||||
|
@ -957,7 +957,7 @@ static void read_nodelists() {
|
||||
if(not quiet) std::cout << ' ' << std::endl << "* Writing " << name << std::endl;
|
||||
for(fno=nodelist.begin(); fno != nodelist.end(); fno++) {
|
||||
if(*(fno->fn))
|
||||
fprintf(fp, "%s %lu\n", fno->fn, fno->ft);
|
||||
fprintf(fp, "%s %lu\n", CleanFilename(fno->fn), fno->ft);
|
||||
}
|
||||
fclose(fp);
|
||||
}
|
||||
|
Reference in New Issue
Block a user