rpms/curl/F-12 curl-7.19.7-ssl-timeout.patch, NONE, 1.1 curl.spec, 1.130, 1.131

Kamil Dudka kdudka at fedoraproject.org
Wed Dec 30 19:06:47 UTC 2009


Author: kdudka

Update of /cvs/extras/rpms/curl/F-12
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv32185

Modified Files:
	curl.spec 
Added Files:
	curl-7.19.7-ssl-timeout.patch 
Log Message:
- fix incorrect SSL recv/send timeout handling

curl-7.19.7-ssl-timeout.patch:
 nss.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

--- NEW FILE curl-7.19.7-ssl-timeout.patch ---
diff --git a/lib/nss.c b/lib/nss.c
index 51e62ee..c7c7e5f 100644
--- a/lib/nss.c
+++ b/lib/nss.c
@@ -1353,8 +1353,8 @@ int Curl_nss_send(struct connectdata *conn,  /* connection data */
     err = PR_GetError();
 
     if(err == PR_IO_TIMEOUT_ERROR) {
-      failf(data, "SSL connection timeout");
-      return CURLE_OPERATION_TIMEDOUT;
+      failf(data, "SSL connection send timeout");
+      return -1;
     }
 
     failf(conn->data, "SSL write: error %d", err);
@@ -1394,8 +1394,8 @@ ssize_t Curl_nss_recv(struct connectdata * conn, /* connection data */
       return -1; /* basically EWOULDBLOCK */
     }
     if(err == PR_IO_TIMEOUT_ERROR) {
-      failf(data, "SSL connection timeout");
-      return CURLE_OPERATION_TIMEDOUT;
+      failf(data, "SSL connection receive timeout");
+      return -1;
     }
     failf(conn->data, "SSL read: errno %d", err);
     return -1;


Index: curl.spec
===================================================================
RCS file: /cvs/extras/rpms/curl/F-12/curl.spec,v
retrieving revision 1.130
retrieving revision 1.131
diff -u -p -r1.130 -r1.131
--- curl.spec	9 Dec 2009 19:15:29 -0000	1.130
+++ curl.spec	30 Dec 2009 19:06:47 -0000	1.131
@@ -1,7 +1,7 @@
 Summary: A utility for getting files from remote servers (FTP, HTTP, and others)
 Name: curl
 Version: 7.19.7
-Release: 5%{?dist}
+Release: 6%{?dist}
 License: MIT
 Group: Applications/Internet
 Source: http://curl.haxx.se/download/%{name}-%{version}.tar.lzma
@@ -9,6 +9,7 @@ Source2: curlbuild.h
 Patch1: curl-7.19.7-modelfree.patch
 Patch2: curl-7.19.7-ssl-retry.patch
 Patch3: curl-7.19.7-nss-warning.patch
+Patch4: curl-7.19.7-ssl-timeout.patch
 Patch101: curl-7.15.3-multilib.patch
 Patch102: curl-7.16.0-privlibs.patch
 Patch103: curl-7.19.4-debug.patch
@@ -82,6 +83,9 @@ use cURL's capabilities internally.
 %patch2 -p1
 %patch3 -p1
 
+# other patches
+%patch4 -p1
+
 # Fedora patches
 %patch101 -p1
 %patch102 -p1
@@ -183,6 +187,11 @@ rm -rf $RPM_BUILD_ROOT
 %{_datadir}/aclocal/libcurl.m4
 
 %changelog
+* Wed Dec 30 2009 Kamil Dudka <kdudka at redhat.com> 7.19.7-6
+- fix incorrect SSL recv/send timeout handling, patch contributed
+  by Kevin Baughman
+- http://permalink.gmane.org/gmane.comp.web.curl.library/26302
+
 * Wed Dec 09 2009 Kamil Dudka <kdudka at redhat.com> 7.19.7-5
 - use different port numbers for 32bit and 64bit builds
 - replace hard wired port numbers in the test suite




More information about the fedora-extras-commits mailing list