From: Michihiro NAKAJIMA Date: Mon, 26 Apr 2010 05:03:58 +0000 (-0400) Subject: The type of a zisofs option is now boolean. X-Git-Tag: v3.0.0a~1077 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9b8420dd031e8c46394325de7f03f22ae0e4060e;p=thirdparty%2Flibarchive.git The type of a zisofs option is now boolean. SVN-Revision: 2310 --- diff --git a/libarchive/archive_write_set_format_iso9660.c b/libarchive/archive_write_set_format_iso9660.c index 733b40429..e097d4619 100644 --- a/libarchive/archive_write_set_format_iso9660.c +++ b/libarchive/archive_write_set_format_iso9660.c @@ -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=', 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