[Pkg-openssl-changes] r300 - in openssl/trunk: crypto/rand debian

kroeckx at alioth.debian.org kroeckx at alioth.debian.org
Wed May 7 18:35:41 UTC 2008


Author: kroeckx
Date: 2008-05-07 18:35:39 +0000 (Wed, 07 May 2008)
New Revision: 300

Modified:
   openssl/trunk/crypto/rand/md_rand.c
   openssl/trunk/debian/changelog
   openssl/trunk/debian/libssl0.9.8.postinst
Log:
ssleay_rand_add() really needs to call MD_Update() for buf.


Modified: openssl/trunk/crypto/rand/md_rand.c
===================================================================
--- openssl/trunk/crypto/rand/md_rand.c	2008-05-07 15:39:45 UTC (rev 299)
+++ openssl/trunk/crypto/rand/md_rand.c	2008-05-07 18:35:39 UTC (rev 300)
@@ -271,10 +271,7 @@
 		else
 			MD_Update(&m,&(state[st_idx]),j);
 			
-/*		
- * Don't add uninitialised data.
 		MD_Update(&m,buf,j);
-*/
 		MD_Update(&m,(unsigned char *)&(md_c[0]),sizeof(md_c));
 		MD_Final(&m,local_md);
 		md_c[1]++;

Modified: openssl/trunk/debian/changelog
===================================================================
--- openssl/trunk/debian/changelog	2008-05-07 15:39:45 UTC (rev 299)
+++ openssl/trunk/debian/changelog	2008-05-07 18:35:39 UTC (rev 300)
@@ -1,10 +1,14 @@
-openssl (0.9.8g-9) unstable; urgency=low
+openssl (0.9.8g-9) unstable; urgency=high
 
+  [ Christoph Martin ]
   * Include updated debconf translations (closes: #473477, #461597,
     #461880, #462011, #465517, #475439)
 
- -- Christoph Martin <christoph.martin at uni-mainz.de>  Wed,  7 May 2008 17:31:09 +0200
+  [ Kurt Roeckx ]
+  * ssleay_rand_add() really needs to call MD_Update() for buf.
 
+ -- Kurt Roeckx <kurt at roeckx.be>  Wed, 07 May 2008 20:32:12 +0200
+
 openssl (0.9.8g-8) unstable; urgency=high
 
   * Don't add extentions to ssl v3 connections.  It breaks with some

Modified: openssl/trunk/debian/libssl0.9.8.postinst
===================================================================
--- openssl/trunk/debian/libssl0.9.8.postinst	2008-05-07 15:39:45 UTC (rev 299)
+++ openssl/trunk/debian/libssl0.9.8.postinst	2008-05-07 18:35:39 UTC (rev 300)
@@ -57,7 +57,7 @@
 if [ "$1" = "configure" ]
 then
     if [ ! -z "$2" ]; then
-	if dpkg --compare-versions "$2" lt 0.9.8e-9; then
+	if dpkg --compare-versions "$2" lt 0.9.8g-9; then
 	    db_version 2.0
 
 	    echo -n "Checking for services that may need to be restarted..."




More information about the Pkg-openssl-changes mailing list