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

Steve McIntyre 93sam at alioth.debian.org
Thu Apr 22 23:32:47 UTC 2010


Author: 93sam
Date: 2010-04-22 23:32:47 +0000 (Thu, 22 Apr 2010)
New Revision: 844

Modified:
   cdrkit/trunk/Changelog
   cdrkit/trunk/genisoimage/jte.c
Log:
genisoimage: Fix silly bug in MD5 output in template files.



Modified: cdrkit/trunk/Changelog
===================================================================
--- cdrkit/trunk/Changelog	2010-01-10 00:54:09 UTC (rev 843)
+++ cdrkit/trunk/Changelog	2010-04-22 23:32:47 UTC (rev 844)
@@ -1,3 +1,10 @@
+cdrkit (1.1.10) UNRELEASED; urgency=low
+
+  [ Steve McIntyre ]
+  * genisoimage: Fix silly bug in MD5 output in template files.
+
+ -- Steve McIntyre <93sam at debian.org>  Fri, 23 Apr 2010 00:30:18 +0100
+
 cdrkit (1.1.10) RELEASED; urgency=low
 
   [ Steve McIntyre ]

Modified: cdrkit/trunk/genisoimage/jte.c
===================================================================
--- cdrkit/trunk/genisoimage/jte.c	2010-01-10 00:54:09 UTC (rev 843)
+++ cdrkit/trunk/genisoimage/jte.c	2010-04-22 23:32:47 UTC (rev 844)
@@ -753,7 +753,7 @@
 
     jimage.type = 5;
     write_le48(image_len, &jimage.imageLen[0]);
-    memcpy(jimage.imageMD5, checksum_hex(iso_context, CHECK_MD5), sizeof(jimage.imageMD5));
+    checksum_copy(iso_context, CHECK_MD5, &jimage.imageMD5[0]);
     write_le32(MIN_JIGDO_FILE_SIZE, &jimage.blockLen[0]);
     template_fwrite(&jimage, sizeof(jimage), 1, t_file);    
     template_fwrite(out_len, sizeof(out_len), 1, t_file);




More information about the Debburn-changes mailing list