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

93sam at alioth.debian.org 93sam at alioth.debian.org
Wed Sep 19 21:04:32 UTC 2007


Author: 93sam
Date: 2007-09-19 21:04:32 +0000 (Wed, 19 Sep 2007)
New Revision: 780

Modified:
   cdrkit/trunk/Changelog
   cdrkit/trunk/genisoimage/jte.c
Log:
  * genisoimage/jte.c: fix exclude list handling.


Modified: cdrkit/trunk/Changelog
===================================================================
--- cdrkit/trunk/Changelog	2007-09-19 20:57:53 UTC (rev 779)
+++ cdrkit/trunk/Changelog	2007-09-19 21:04:32 UTC (rev 780)
@@ -3,8 +3,13 @@
   [ Peter Samuelson ]
   * wodim.1: small fixes.
 
- -- Peter Samuelson <peter at p12n.org>  Mon, 06 Aug 2007 16:12:11 -0500
+  [ Steve McIntyre ]
+  * genisoimage/jte.c: fix bzip2-compressed template data to be
+    compatible with jigdo.
+  * genisoimage/jte.c: fix exclude list handling.
 
+ -- Steve McIntyre <93sam at debian.org>  Wed, 19 Sep 2007 22:03:04 +0100
+
 cdrkit (1.1.6) RELEASED; urgency=low
 
   [ Vladimir Nadvornik ]

Modified: cdrkit/trunk/genisoimage/jte.c
===================================================================
--- cdrkit/trunk/genisoimage/jte.c	2007-09-19 20:57:53 UTC (rev 779)
+++ cdrkit/trunk/genisoimage/jte.c	2007-09-19 21:04:32 UTC (rev 780)
@@ -204,8 +204,7 @@
 	new->match_rule = pattern;
 
     /* Order on the exclude list doesn't matter! */
-    if (NULL != exclude_list)
-        new->next = exclude_list;
+	new->next = exclude_list;
 
     exclude_list = new;
     return 0;
@@ -246,8 +245,7 @@
 	new->match_rule = pattern;
 
     /* Order on the include list doesn't matter! */
-    if (NULL != include_list)
-        new->next = include_list;
+	new->next = include_list;
 
     include_list = new;
     return 0;




More information about the Debburn-changes mailing list