mirror of
https://git.yoctoproject.org/poky
synced 2026-04-14 08:02:30 +02:00
gnupg: Add missing patch for curl_typeof_fix
Seems the wrong commit was grabbed and missed this patch (From OE-Core rev: 347426ca3dbe06df1d1b0976a81e96cf6238af21) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
0733f7a4a9
commit
caea5b9610
@@ -0,0 +1,27 @@
|
||||
|
||||
This has been discussed in a couple of different bug reported
|
||||
upstream:
|
||||
|
||||
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=486250
|
||||
http://bugs.sourcemage.org/show_bug.cgi?id=14446
|
||||
|
||||
Fix:
|
||||
http://lists.gnupg.org/pipermail/gnupg-devel/2008-April/024344.html
|
||||
|
||||
Upstream-Status: Backport [Debian]
|
||||
|
||||
Signed-off-by: Saul Wold <sgw@linux.intel.com>
|
||||
|
||||
Index: gnupg-1.4.7/keyserver/gpgkeys_curl.c
|
||||
===================================================================
|
||||
--- gnupg-1.4.7.orig/keyserver/gpgkeys_curl.c
|
||||
+++ gnupg-1.4.7/keyserver/gpgkeys_curl.c
|
||||
@@ -286,7 +286,7 @@ main(int argc,char *argv[])
|
||||
curl_easy_setopt(curl,CURLOPT_VERBOSE,1);
|
||||
}
|
||||
|
||||
- curl_easy_setopt(curl,CURLOPT_SSL_VERIFYPEER,opt->flags.check_cert);
|
||||
+ curl_easy_setopt(curl,CURLOPT_SSL_VERIFYPEER,(long)opt->flags.check_cert);
|
||||
curl_easy_setopt(curl,CURLOPT_CAINFO,opt->ca_cert_file);
|
||||
|
||||
if(proxy)
|
||||
Reference in New Issue
Block a user