summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2006-04-25 22:25:03 +0000
committerDaniel Black <dragonheart@gentoo.org>2006-04-25 22:25:03 +0000
commit0cf740c6419b3806d7c28c1e008b99f41ee950fe (patch)
treeaa8bf8fb80c5973e9c6a1388206c20ef83862397 /net-ftp/lftp/files/lftp-3.3.4-blocking-ssl-transfer.patch
parentversion bump. removed stay patches and older version (diff)
downloadgentoo-2-0cf740c6419b3806d7c28c1e008b99f41ee950fe.tar.gz
gentoo-2-0cf740c6419b3806d7c28c1e008b99f41ee950fe.tar.bz2
gentoo-2-0cf740c6419b3806d7c28c1e008b99f41ee950fe.zip
version bump. removed stay patches and older version
(Portage version: 2.1_pre9-r4) (Signed Manifest commit)
Diffstat (limited to 'net-ftp/lftp/files/lftp-3.3.4-blocking-ssl-transfer.patch')
-rw-r--r--net-ftp/lftp/files/lftp-3.3.4-blocking-ssl-transfer.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/net-ftp/lftp/files/lftp-3.3.4-blocking-ssl-transfer.patch b/net-ftp/lftp/files/lftp-3.3.4-blocking-ssl-transfer.patch
deleted file mode 100644
index 00895b789617..000000000000
--- a/net-ftp/lftp/files/lftp-3.3.4-blocking-ssl-transfer.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Index: lftp_ssl.cc
-===================================================================
-RCS file: /home/lav/cvsroot/lftp/src/lftp_ssl.cc,v
-retrieving revision 1.24
-diff -u -p -r1.24 lftp_ssl.cc
---- lftp_ssl.cc 8 Nov 2005 07:21:18 -0000 1.24
-+++ lftp_ssl.cc 22 Nov 2005 12:07:34 -0000
-@@ -851,7 +851,7 @@ bool lftp_ssl_openssl::check_fatal(int r
-
- int lftp_ssl_openssl::do_handshake()
- {
-- if(SSL_is_init_finished(ssl))
-+ if(handshake_done)
- return DONE;
- if(handshake_mode==SERVER)
- {
-@@ -873,6 +873,7 @@ int lftp_ssl_openssl::do_handshake()
- return ERROR;
- }
- }
-+ handshake_done=true;
- return DONE;
- }
- int lftp_ssl_openssl::read(char *buf,int size)