This commit is contained in:
parent
c54486e66e
commit
0961a7fa18
13
gnutls-fix_size_t.patch
Normal file
13
gnutls-fix_size_t.patch
Normal file
@ -0,0 +1,13 @@
|
||||
Index: gnutls-1.6.1/src/tests.c
|
||||
===================================================================
|
||||
--- gnutls-1.6.1.orig/src/tests.c
|
||||
+++ gnutls-1.6.1/src/tests.c
|
||||
@@ -50,7 +50,7 @@ int tls1_1_ok = 0;
|
||||
/* keep session info */
|
||||
static char *session_data = NULL;
|
||||
static char session_id[32];
|
||||
-static int session_data_size = 0, session_id_size = 0;
|
||||
+static size_t session_data_size = 0, session_id_size = 0;
|
||||
static int sfree = 0;
|
||||
static int handshake_output = 0;
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu May 10 17:21:59 CEST 2007 - mkoenig@suse.de
|
||||
|
||||
- Fix segfault on s390x [#97441]
|
||||
gnutls-fix_size_t.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 23 17:29:00 CET 2007 - mkoenig@suse.de
|
||||
|
||||
|
@ -13,12 +13,13 @@
|
||||
Name: gnutls
|
||||
BuildRequires: gcc-c++ libgcrypt-devel libopencdk-devel lzo-devel
|
||||
Version: 1.6.1
|
||||
Release: 2
|
||||
Release: 8
|
||||
License: GNU General Public License (GPL)
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
URL: http://www.gnutls.org/
|
||||
Source0: %name-%version.tar.bz2
|
||||
Patch0: gnutls-char-signedness.patch
|
||||
Patch1: gnutls-fix_size_t.patch
|
||||
Summary: The GNU Transport Layer Security Library
|
||||
Group: Productivity/Networking/Security
|
||||
Autoreqprov: on
|
||||
@ -58,6 +59,7 @@ Authors:
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0
|
||||
%patch1 -p1
|
||||
|
||||
%build
|
||||
autoreconf -fi
|
||||
@ -121,6 +123,9 @@ rm -rf %buildroot
|
||||
%doc doc/examples doc/gnutls.html doc/*.png doc/gnutls.pdf doc/reference/html/*
|
||||
|
||||
%changelog
|
||||
* Thu May 10 2007 - mkoenig@suse.de
|
||||
- Fix segfault on s390x [#97441]
|
||||
gnutls-fix_size_t.patch
|
||||
* Tue Jan 23 2007 - mkoenig@suse.de
|
||||
- update to new stable branch 1.6.1:
|
||||
* Fix the list of trusted CAs that server's send to clients.
|
||||
|
Loading…
Reference in New Issue
Block a user