[Pkg-gnutls-commits] r1506 - in /packages/gnutls28/trunk/debian: changelog patches/35_s390buildfix.diff patches/series

ametzler at users.alioth.debian.org ametzler at users.alioth.debian.org
Sat Jun 23 06:17:10 UTC 2012


Author: ametzler
Date: Sat Jun 23 06:17:08 2012
New Revision: 1506

URL: http://svn.debian.org/wsvn/pkg-gnutls/?sc=1&rev=1506
Log:
3.0.20-3 to unstable, adds 35_s390buildfix.diff - Fix test-suite
error on s390x.

Added:
    packages/gnutls28/trunk/debian/patches/35_s390buildfix.diff
Modified:
    packages/gnutls28/trunk/debian/changelog
    packages/gnutls28/trunk/debian/patches/series

Modified: packages/gnutls28/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnutls/packages/gnutls28/trunk/debian/changelog?rev=1506&op=diff
==============================================================================
--- packages/gnutls28/trunk/debian/changelog (original)
+++ packages/gnutls28/trunk/debian/changelog Sat Jun 23 06:17:08 2012
@@ -1,8 +1,8 @@
-gnutls28 (3.0.20-3) UNRELEASED; urgency=low
-
-  * NOT RELEASED YET
-
- -- Andreas Metzler <ametzler at debian.org>  Sat, 16 Jun 2012 16:39:33 +0200
+gnutls28 (3.0.20-3) unstable; urgency=low
+
+  * 35_s390buildfix.diff - Fixes test-suite error on s390x.
+
+ -- Andreas Metzler <ametzler at debian.org>  Thu, 21 Jun 2012 19:52:47 +0200
 
 gnutls28 (3.0.20-2) unstable; urgency=low
 

Added: packages/gnutls28/trunk/debian/patches/35_s390buildfix.diff
URL: http://svn.debian.org/wsvn/pkg-gnutls/packages/gnutls28/trunk/debian/patches/35_s390buildfix.diff?rev=1506&op=file
==============================================================================
--- packages/gnutls28/trunk/debian/patches/35_s390buildfix.diff (added)
+++ packages/gnutls28/trunk/debian/patches/35_s390buildfix.diff Sat Jun 23 06:17:08 2012
@@ -1,0 +1,25 @@
+From 4dd639950b605bd0385ac8823423574af6552f55 Mon Sep 17 00:00:00 2001
+From: Nikos Mavrogiannopoulos <nmav at gnutls.org>
+Date: Tue, 19 Jun 2012 00:38:57 +0200
+Subject: [PATCH 1/3] correct comparison of sent data in dtls-stress.
+
+---
+ tests/dtls/dtls-stress.c |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tests/dtls/dtls-stress.c b/tests/dtls/dtls-stress.c
+index 6e85a80..7bad751 100644
+--- a/tests/dtls/dtls-stress.c
++++ b/tests/dtls/dtls-stress.c
+@@ -663,7 +663,7 @@ static void client(int sock)
+ 		len = process_error(gnutls_record_recv(session, buffer, sizeof(buffer)));
+ 	} while (len < 0);
+ 
+-	if (len > 0 && strcmp(line, buffer) == 0) {
++	if (len > 0 && strncmp(line, buffer, len) == 0) {
+ 		exit(0);
+ 	} else {
+ 		exit(1);
+-- 
+1.7.10
+

Modified: packages/gnutls28/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnutls/packages/gnutls28/trunk/debian/patches/series?rev=1506&op=diff
==============================================================================
--- packages/gnutls28/trunk/debian/patches/series (original)
+++ packages/gnutls28/trunk/debian/patches/series Sat Jun 23 06:17:08 2012
@@ -1,3 +1,4 @@
 14_version_gettextcat.diff
 20_test-select.diff
 30_forcesystemlibopts.diff
+35_s390buildfix.diff




More information about the Pkg-gnutls-commits mailing list