Added experimental support for the ICM flag (FSP-1033)

This commit is contained in:
Michiel Broek
2004-06-18 19:54:13 +00:00
parent 2fc80ab754
commit 1d93090e5a
11 changed files with 60 additions and 75 deletions

View File

@@ -229,6 +229,14 @@ void CloseNoderec(int Force)
while (fread(&nodes, nodeshdr.recsize, 1, fi) == 1) {
if (!nodes.Deleted)
fill_stlist(&nod, nodes.Sysop, ftell(fi) - nodeshdr.recsize);
else {
/*
* Remove obsolete paths
*/
unlink(nodes.Dir_out_path);
unlink(nodes.Dir_in_path);
unlink(nodes.OutBox);
}
fseek(fi, nodeshdr.filegrp + nodeshdr.mailgrp, SEEK_CUR);
}
sort_stlist(&nod);