fix a bug that shows up with the new libgcrypt release (#725369)
This commit is contained in:
parent
bb009e3e1b
commit
fbf259bb8a
28
gnupg-2.0.17-libgcrypt-mpi.patch
Normal file
28
gnupg-2.0.17-libgcrypt-mpi.patch
Normal file
@ -0,0 +1,28 @@
|
||||
X-Git-Url: http://git.gnupg.org/cgi-bin/gitweb.cgi?p=gnupg.git;a=blobdiff_plain;f=g10%2Fpkglue.c;h=5c47511f7236cbde17a2a983bc597950be830475;hp=cbfe21ea89f4088033e660c5210178a535fb86c9;hb=13290b0e0fcf3a493e4848b29329d56b69bc4dd9;hpb=af497d52c3c88d1cdbedf1c7c2ce2f21f2bc9ad4
|
||||
|
||||
diff --git a/g10/pkglue.c b/g10/pkglue.c
|
||||
index cbfe21e..5c47511 100644
|
||||
--- a/g10/pkglue.c
|
||||
+++ b/g10/pkglue.c
|
||||
@@ -34,10 +34,10 @@ mpi_from_sexp (gcry_sexp_t sexp, const char * item)
|
||||
{
|
||||
gcry_sexp_t list;
|
||||
gcry_mpi_t data;
|
||||
-
|
||||
+
|
||||
list = gcry_sexp_find_token (sexp, item, 0);
|
||||
assert (list);
|
||||
- data = gcry_sexp_nth_mpi (list, 1, 0);
|
||||
+ data = gcry_sexp_nth_mpi (list, 1, GCRYMPI_FMT_USG);
|
||||
assert (data);
|
||||
gcry_sexp_release (list);
|
||||
return data;
|
||||
@@ -293,7 +293,7 @@ pk_decrypt (int algo, gcry_mpi_t * result, gcry_mpi_t * data,
|
||||
if (rc)
|
||||
return rc;
|
||||
|
||||
- *result = gcry_sexp_nth_mpi (s_plain, 0, 0);
|
||||
+ *result = gcry_sexp_nth_mpi (s_plain, 0, GCRYMPI_FMT_USG);
|
||||
gcry_sexp_release (s_plain);
|
||||
if (!*result)
|
||||
return -1; /* oops */
|
@ -1,8 +1,7 @@
|
||||
|
||||
Summary: Utility for secure communication and data storage
|
||||
Name: gnupg2
|
||||
Version: 2.0.17
|
||||
Release: 1%{?dist}
|
||||
Release: 2%{?dist}
|
||||
|
||||
License: GPLv3+
|
||||
Group: Applications/System
|
||||
@ -12,6 +11,8 @@ Source1: ftp://ftp.gnupg.org/gcrypt/%{?pre:alpha/}gnupg/gnupg-%{version}%{?pre}.
|
||||
#Source0: gnupg2-20090809svn.tar.bz2
|
||||
Patch2: gnupg-2.0.16-tests-s2kcount.patch
|
||||
Patch3: gnupg-2.0.14-secmem.patch
|
||||
# This is already in upstream sources
|
||||
Patch4: gnupg-2.0.17-libgcrypt-mpi.patch
|
||||
|
||||
URL: http://www.gnupg.org/
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
@ -64,6 +65,7 @@ to the base GnuPG package
|
||||
|
||||
%patch2 -p1 -b .s2k
|
||||
%patch3 -p1 -b .secmem
|
||||
%patch4 -p1 -b .mpi
|
||||
|
||||
# pcsc-lite library major: 0 in 1.2.0, 1 in 1.2.9+ (dlopen()'d in pcsc-wrapper)
|
||||
# Note: this is just the name of the default shared lib to load in scdaemon,
|
||||
@ -165,6 +167,9 @@ rm -rf %{buildroot}
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Jul 25 2011 Tomas Mraz <tmraz@redhat.com> - 2.0.17-2
|
||||
- fix a bug that shows up with the new libgcrypt release (#725369)
|
||||
|
||||
* Thu Jan 20 2011 Tomas Mraz <tmraz@redhat.com> - 2.0.17-1
|
||||
- new upstream release (#669611)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user