1
0
mirror of https://github.com/hsoft/collapseos.git synced 2025-04-04 13:38:39 +11:00

cfspack: write an empty block after the end, to support empty filesystems

This commit is contained in:
James Stanley 2019-10-19 12:28:37 +01:00
parent 909da5177f
commit 63826c3c72

View File

@ -136,7 +136,10 @@ int main(int argc, char *argv[])
// special case: just one file
return spitblock(srcpath, basename(srcpath));
} else {
return spitdir(srcpath, "", pattern);
int r = spitdir(srcpath, "", pattern);
char emptyblock[BLKSIZE] = {'C', 'F', 'S', 0};
fwrite(emptyblock, BLKSIZE, 1, stdout);
return r;
}
}