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

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