Write clean filename to .gxl

This commit is contained in:
Alexander S. Aganichev 2003-01-12 13:40:59 +00:00
parent b425c81079
commit 9dac8c18b8
2 changed files with 5 additions and 1 deletions

View File

@ -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.

View File

@ -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);
}