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

93sam at alioth.debian.org 93sam at alioth.debian.org
Sun May 25 20:39:10 UTC 2008


Author: 93sam
Date: 2008-05-25 20:39:07 +0000 (Sun, 25 May 2008)
New Revision: 805

Modified:
   cdrkit/trunk/Changelog
   cdrkit/trunk/genisoimage/sha1.h
Log:
Fix a type issue that broke sha1 support on 64-bit arches.


Modified: cdrkit/trunk/Changelog
===================================================================
--- cdrkit/trunk/Changelog	2008-05-25 20:35:01 UTC (rev 804)
+++ cdrkit/trunk/Changelog	2008-05-25 20:39:07 UTC (rev 805)
@@ -3,7 +3,10 @@
   [ Steve McIntyre ]
   * genisoimage/joliet.c: Fix a potential memory corruption bug.
   * genisoimage/md5.c: Trivial cleanup
-  * genisoimage/genisoimage.[c1]: Add command-line support for -jigdo-template-compress
+  * genisoimage/genisoimage.[c1]: Add command-line support for
+    -jigdo-template-compress
+  * genisoimage/sha1.h: Fix a type issue that broke sha1 support
+    on 64-bit arches.
 
  -- Steve McIntyre <93sam at debian.org>  Mon, 25 May 2008 21:22:26 +0100
 

Modified: cdrkit/trunk/genisoimage/sha1.h
===================================================================
--- cdrkit/trunk/genisoimage/sha1.h	2008-05-25 20:35:01 UTC (rev 804)
+++ cdrkit/trunk/genisoimage/sha1.h	2008-05-25 20:39:07 UTC (rev 805)
@@ -21,7 +21,7 @@
 
 # include <stdio.h>
 
-typedef unsigned long md5_uint32;
+typedef unsigned int md5_uint32;
 
 /* Structure to save state of computation between the single steps.  */
 struct sha1_ctx




More information about the Debburn-changes mailing list