From 63826c3c729e8c327f2d3a528365db4bb69c6033 Mon Sep 17 00:00:00 2001 From: James Stanley Date: Sat, 19 Oct 2019 12:28:37 +0100 Subject: [PATCH] cfspack: write an empty block after the end, to support empty filesystems --- tools/cfspack/cfspack.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/cfspack/cfspack.c b/tools/cfspack/cfspack.c index f222c79..d89d266 100644 --- a/tools/cfspack/cfspack.c +++ b/tools/cfspack/cfspack.c @@ -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; } }