Fix relative pathnames in nodelist index

This commit is contained in:
Alexander S. Aganichev
2003-01-18 15:53:55 +00:00
parent c0439363f6
commit 85c3983bbf
3 changed files with 6 additions and 3 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", CleanFilename(fno->fn), fno->ft);
fprintf(fp, "%s %lu\n", fno->fn, fno->ft);
}
fclose(fp);
}