mirror of
https://github.com/hsoft/collapseos.git
synced 2025-04-05 06:38:40 +11:00
cfspack: write an empty block after the end, to support empty filesystems
This commit is contained in:
parent
909da5177f
commit
63826c3c72
@ -136,7 +136,10 @@ int main(int argc, char *argv[])
|
|||||||
// special case: just one file
|
// special case: just one file
|
||||||
return spitblock(srcpath, basename(srcpath));
|
return spitblock(srcpath, basename(srcpath));
|
||||||
} else {
|
} else {
|
||||||
return spitdir(srcpath, "", pattern);
|
int r = spitdir(srcpath, "", pattern);
|
||||||
|
char emptyblock[BLKSIZE] = {'C', 'F', 'S', 0};
|
||||||
|
fwrite(emptyblock, BLKSIZE, 1, stdout);
|
||||||
|
return r;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user