cdrkit/genisoimage-dlength.patch
Harald Hoyer 23db6ff35a - fixed rhbz#248262
- switched to alternatives
2007-09-20 15:30:53 +00:00

22 lines
897 B
Diff

diff -ur cdrkit-1.1.6/genisoimage/tree.c cdrkit-1.1.2/genisoimage/tree.c
--- cdrkit-1.1.6/genisoimage/tree.c 2007-09-20 16:05:13.000000000 +0200
+++ cdrkit-1.1.2/genisoimage/tree.c 2007-09-20 16:04:52.000000000 +0200
@@ -1596,12 +1602,10 @@
!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);
- }
+ 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 */