From 8ca6466a71cf615f4b8a573e5902607b446fb888 Mon Sep 17 00:00:00 2001 From: David van Moolenbroek Date: Sat, 23 Aug 2014 18:55:44 +0000 Subject: [PATCH] writeisofs: set file struct version field to one Dictated by the spec and correctly flagged by the new isofs code. Change-Id: Ie155c30b6a53e40ec42066af0adbcdbf457e5620 --- minix/commands/writeisofs/writeisofs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/minix/commands/writeisofs/writeisofs.c b/minix/commands/writeisofs/writeisofs.c index 4df404799..033b51971 100644 --- a/minix/commands/writeisofs/writeisofs.c +++ b/minix/commands/writeisofs/writeisofs.c @@ -833,7 +833,7 @@ writebootimage(char *bootimage, int bootfd, int fd, int *currentsector, exit(1); } - fprintf(stderr, " * appended sector info: 0x%x len 0x%x\n", + fprintf(stderr, " * appended sector info: 0x%llx len 0x%x\n", bap[0].sector, bap[0].length); addr = buf; @@ -1063,6 +1063,7 @@ main(int argc, char *argv[]) memcpy(pvd.modified, timestr, strlen(timestr)); memcpy(pvd.effective, timestr, strlen(timestr)); strcpy(pvd.expiry, "0000000000000000"); /* not specified */ + pvd.one2 = 1; pvdsector = currentsector; writesector(fd, (char *) &pvd, ¤tsector); -- 2.44.0