From: David van Moolenbroek Date: Sat, 23 Aug 2014 18:55:44 +0000 (+0000) Subject: writeisofs: set file struct version field to one X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=refs%2Fchanges%2F55%2F2755%2F3;p=minix.git writeisofs: set file struct version field to one Dictated by the spec and correctly flagged by the new isofs code. Change-Id: Ie155c30b6a53e40ec42066af0adbcdbf457e5620 --- 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);