New -stdio_sync option "end", -as mkisofs default is now --stdio_sync "off"
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
|
||||
/* xorriso - creates, loads, manipulates and burns ISO 9660 filesystem images.
|
||||
|
||||
Copyright 2007-2013 Thomas Schmitt, <scdbackup@gmx.net>
|
||||
Copyright 2007-2014 Thomas Schmitt, <scdbackup@gmx.net>
|
||||
|
||||
Provided under GPL version 2 or later.
|
||||
|
||||
@ -3107,6 +3107,8 @@ int Xorriso_status(struct XorrisO *xorriso, char *filter, FILE *fp, int flag)
|
||||
strcat(line, "off");
|
||||
else if(xorriso->stdio_sync == 0)
|
||||
strcat(line, "on");
|
||||
else if(xorriso->stdio_sync == 1)
|
||||
strcat(line, "end");
|
||||
else if(xorriso->stdio_sync % 512) {
|
||||
Sfile_off_t_text(line+strlen(line), (off_t) (xorriso->stdio_sync * 2048),
|
||||
0);
|
||||
|
Reference in New Issue
Block a user