]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
The type of a zisofs option is now boolean.
authorMichihiro NAKAJIMA <ggcueroad@gmail.com>
Mon, 26 Apr 2010 05:03:58 +0000 (01:03 -0400)
committerMichihiro NAKAJIMA <ggcueroad@gmail.com>
Mon, 26 Apr 2010 05:03:58 +0000 (01:03 -0400)
SVN-Revision: 2310

libarchive/archive_write_set_format_iso9660.c

index 733b404291c881a2a287ad766de228350adfafcc..e097d4619e65ee463893ee4a0eb9f6e3dfd6f311 100644 (file)
@@ -674,8 +674,7 @@ struct iso_option {
 #define VOLUME_IDENTIFIER_SIZE         32
 
        /*
-        * Usage  : zisofs
-        *        : !zisofs [DEFAULT]
+        * Usage  : !zisofs [DEFAULT] 
         *        :    Disable to generate RRIP 'ZF' extension.
         *        : zisofs
         *        :    Make files zisofs file and generate RRIP 'ZF'
@@ -694,12 +693,12 @@ struct iso_option {
         *        :
         *        :    When you specify option 'boot=<boot-image>', that
         *        :    'boot-image' file won't be converted to zisofs file.
-        * Type   : boolean, string
+        * Type   : boolean
         * Default: Disabled
         *
         * Generates RRIP 'ZF' System Use Entry.
         */
-       unsigned int     zisofs:2;
+       unsigned int     zisofs:1;
 #define OPT_ZISOFS_DISABLED            0
 #define OPT_ZISOFS_DIRECT              1
 #define OPT_ZISOFS_DEFAULT             OPT_ZISOFS_DISABLED