From 94638d6e9b5038212e567ae0dc7b102bdbf11446 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Sat, 5 Jul 2008 18:43:57 +0000 Subject: [PATCH] Cared for a peculiarity of growisofs when using mkisofs -C --- xorriso/xorriso.c | 2 ++ xorriso/xorriso_timestamp.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/xorriso/xorriso.c b/xorriso/xorriso.c index 7d3a01d3..822605c4 100644 --- a/xorriso/xorriso.c +++ b/xorriso/xorriso.c @@ -7609,6 +7609,8 @@ illegal_c:; goto illegal_c; strncpy(sfe, msc, cpt-msc); sfe[cpt-msc]= 0; + if(strcmp(sfe, "16")==0) /* growisofs uses 16 to avoid a bug in mkisofs */ + strcpy(sfe, "0"); ret= Xorriso_option_load(xorriso, "sbsector", sfe, 0); if(ret<=0) return(ret); diff --git a/xorriso/xorriso_timestamp.h b/xorriso/xorriso_timestamp.h index d9414937..f4e32a18 100644 --- a/xorriso/xorriso_timestamp.h +++ b/xorriso/xorriso_timestamp.h @@ -1 +1 @@ -#define Xorriso_timestamP "2008.07.05.182424" +#define Xorriso_timestamP "2008.07.05.184434"