[Debburn-changes] r782 - cdrkit/trunk/genisoimage

harald-hoyer-guest at alioth.debian.org harald-hoyer-guest at alioth.debian.org
Thu Sep 27 16:17:28 UTC 2007


Author: harald-hoyer-guest
Date: 2007-09-27 16:17:28 +0000 (Thu, 27 Sep 2007)
New Revision: 782

Modified:
   cdrkit/trunk/genisoimage/tree.c
Log:
fix for debian bug #429244
"/.." was included in the iso image, breaking rock and joliet


Modified: cdrkit/trunk/genisoimage/tree.c
===================================================================
--- cdrkit/trunk/genisoimage/tree.c	2007-09-27 16:14:44 UTC (rev 781)
+++ cdrkit/trunk/genisoimage/tree.c	2007-09-27 16:17:28 UTC (rev 782)
@@ -1596,12 +1596,12 @@
 		!S_ISFIFO(lstatbuf.st_mode) && !S_ISSOCK(lstatbuf.st_mode) &&
 		!S_ISLNK(lstatbuf.st_mode) && !S_ISREG(lstatbuf.st_mode) &&
 		!S_ISDIR(lstatbuf.st_mode)) {
-        if ( ! (this_dir == root && strcmp(short_name, "..") == 0)) {
-            fprintf(stderr,
-                    "Unknown file type (%s) %s - ignoring and continuing.\n",
-                    filetype((int) lstatbuf.st_mode), whole_path);
-            return (0);
-        }
+		if ( ! (this_dir == root && strcmp(short_name, "..") == 0)) {
+			fprintf(stderr,
+			"Unknown file type (%s) %s - ignoring and continuing.\n",
+				filetype((int) lstatbuf.st_mode), whole_path);
+		}
+		return (0);
 	}
 	/* Who knows what trash this is - ignore and continue */
 




More information about the Debburn-changes mailing list