summaryrefslogtreecommitdiff
path: root/libarchive/archive_write_set_format_iso9660.c
diff options
context:
space:
mode:
authorMichihiro NAKAJIMA <ggcueroad@gmail.com>2011-11-16 00:12:15 -0500
committerMichihiro NAKAJIMA <ggcueroad@gmail.com>2011-11-16 00:12:15 -0500
commitf7cdfe034a9766f81a05c06827a1f612f4333cbd (patch)
treeb710c7f86b4f1aadbf8b9b2f863b9ad8b755cd04 /libarchive/archive_write_set_format_iso9660.c
parent418b410b9398f7dcd7817dc46222d9976edc72f9 (diff)
downloadlibarchive-f7cdfe034a9766f81a05c06827a1f612f4333cbd.tar.gz
Update comments.
SVN-Revision: 3795
Diffstat (limited to 'libarchive/archive_write_set_format_iso9660.c')
-rw-r--r--libarchive/archive_write_set_format_iso9660.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/libarchive/archive_write_set_format_iso9660.c b/libarchive/archive_write_set_format_iso9660.c
index 28bce22f..4b01a643 100644
--- a/libarchive/archive_write_set_format_iso9660.c
+++ b/libarchive/archive_write_set_format_iso9660.c
@@ -522,11 +522,13 @@ struct iso_option {
* - this level 4 simulates mkisofs option
* '-iso-level 4';
* - crate a enhanced volume as mkisofs doing;
- * - it is the same effects that you specify options
- * "allow-ldots,allow-lowercase,allow-multidot,
- * !limit-depth,!allow-period,!allow-vernum,
- * relaxed-filenames", and that the maxinum length
- * of files and directories is raised to 193.
+ * - allow a File Name to have leading dot;
+ * - allow a File Name to have all ASCII letters;
+ * - allow a File Name to have multiple dots;
+ * - allow more then 8 depths of directory trees;
+ * - disable a version number to a File Name;
+ * - disable a forced period to the tail of a File Name;
+ * - the maxinum length of files and directories is raised to 193.
* if rockridge option is disabled, raised to 207.
*/
unsigned int iso_level:3;
@@ -552,8 +554,8 @@ struct iso_option {
*/
unsigned int joliet:2;
#define OPT_JOLIET_DISABLE 0 /* Not generate Joliet Records. */
-#define OPT_JOLIET_ENABLE 1 /* Generate Joliet Records. */
-#define OPT_JOLIET_LONGNAME 2 /* Use long joliet filenames. */
+#define OPT_JOLIET_ENABLE 1 /* Generate Joliet Records. */
+#define OPT_JOLIET_LONGNAME 2 /* Use long joliet filenames.*/
#define OPT_JOLIET_DEFAULT OPT_JOLIET_ENABLE
/*
@@ -3192,7 +3194,7 @@ set_directory_record_rr(unsigned char *bp, int dr_len,
#define TF_BACKUP 0x10 /* Last Backup time recorded */
#define TF_EXPIRATION 0x20 /* Expiration time recorded */
#define TF_EFFECTIVE 0x40 /* Effective time recorded */
-#define TF_LONG_FORM 0x80 / ISO 9660 17-byte time format used */
+#define TF_LONG_FORM 0x80 /* ISO 9660 17-byte time format used */
unsigned char tf_flags;
length = 5;