Subject: | 6.04 - SSL broken for some servers |
Date: | Fri, 09 Nov 2012 14:21:22 +0100 |
To: | bug-libwww-perl [...] rt.cpan.org |
From: | Marinos Yannikos <mjy [...] geizhals.at> |
Platform: Debian Linux squeeze, fresh LWP + dependencies from CPAN.
GET https://shop.strato.de/WebRoot/Store18/GoogleBase/[...]
Status read failed: Resource temporarily unavailable at
/usr/local/share/perl/5.10.1/Net/HTTP/Methods.pm line 265.
This is simply due to incorrect handling in Net::HTTP::Methods.
Line 262 should read
redo READ if $!{EINTR} || $!{EAGAIN};
instead of now
redo READ if $!{EINTR};
Regards,
Marinos