[Debburn-changes] r808 - in cdrkit/trunk: . genisoimage

93sam at alioth.debian.org 93sam at alioth.debian.org
Sun May 25 21:36:22 UTC 2008


Author: 93sam
Date: 2008-05-25 21:36:21 +0000 (Sun, 25 May 2008)
New Revision: 808

Modified:
   cdrkit/trunk/Changelog
   cdrkit/trunk/genisoimage/genisoimage.c
Log:
  * genisoimage: Add (some of) a patch from Ivan Shmakov. "-o -" will
    now write to stdout, as typical for command line programs.


Modified: cdrkit/trunk/Changelog
===================================================================
--- cdrkit/trunk/Changelog	2008-05-25 21:00:55 UTC (rev 807)
+++ cdrkit/trunk/Changelog	2008-05-25 21:36:21 UTC (rev 808)
@@ -11,6 +11,8 @@
     layout slightly to make for easier debug.
   * genisoimage: Applied patch from Roman Rakus <rrakus at redhat.com> to
     preserve directory permissions.
+  * genisoimage: Add (some of) a patch from Ivan Shmakov. "-o -" will
+    now write to stdout, as typical for command line programs.
 
  -- Steve McIntyre <93sam at debian.org>  Mon, 25 May 2008 21:22:26 +0100
 

Modified: cdrkit/trunk/genisoimage/genisoimage.c
===================================================================
--- cdrkit/trunk/genisoimage/genisoimage.c	2008-05-25 21:00:55 UTC (rev 807)
+++ cdrkit/trunk/genisoimage/genisoimage.c	2008-05-25 21:36:21 UTC (rev 808)
@@ -3414,7 +3414,7 @@
 			exit(1);
 #endif
 		}
-	} else if (outfile) {
+	} else if (outfile && (strcmp (outfile, "-")) != 0) {
 		discimage = fopen(outfile, "wb");
 		if (!discimage) {
 #ifdef	USE_LIBSCHILY




More information about the Debburn-changes mailing list