[SCM] Debian packaging of libnet-http-perl branch, master, updated. debian/6.03-2-12-g1d6832c

Florian Schlichting fsfs at debian.org
Sun May 26 13:22:07 UTC 2013


The following commit has been merged in the master branch:
commit 5deba1d7baf80fc39601338a9d367c95322bd0b2
Author: Florian Schlichting <fsfs at debian.org>
Date:   Sun May 26 15:15:27 2013 +0200

    drop fix_chunked_decoding_674788.diff, applied upstream

diff --git a/debian/patches/fix_chunked_decoding_674788.diff b/debian/patches/fix_chunked_decoding_674788.diff
deleted file mode 100644
index 6f07e6e..0000000
--- a/debian/patches/fix_chunked_decoding_674788.diff
+++ /dev/null
@@ -1,31 +0,0 @@
-Description: Fix a problem with chunked decoding
- If the first read after a chunk header returns EAGAIN or EINTR, the
- chunked state stored in the client object doesn't get updated, so the
- next call to ->read_entity_body tries to read the chunk header again,
- and gives a "Missing newline after chunk data" error.
- .
- This fixes it by updating ${*$self}{'http_chunked'} immediately after
- the chunk header has been read, so that the state persist to the next
- call.
-Origin: other, https://rt.cpan.org/Public/Bug/Display.html?id=74431#txn-1076013
-Bug: https://rt.cpan.org/Public/Bug/Display.html?id=74431
-Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=674788
-Forwarded: yes
-From: Dagfinn Ilmari Mannsåker <ilmari at ilmari.org>
-Last-Update: 2012-06-02
-
----
- lib/Net/HTTP/Methods.pm |    2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
---- a/lib/Net/HTTP/Methods.pm
-+++ b/lib/Net/HTTP/Methods.pm
-@@ -488,7 +488,7 @@
- 	    unless ($chunk_len =~ /^([\da-fA-F]+)\s*$/) {
- 		die "Bad chunk-size in HTTP response: $line";
- 	    }
--	    $chunked = hex($1);
-+	    ${*$self}{'http_chunked'} = $chunked = hex($1);
- 	    if ($chunked == 0) {
- 		${*$self}{'http_trailers'} = [$self->_read_header_lines];
- 		$$buf_ref = "";
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index f7b1ffa..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1 +0,0 @@
-fix_chunked_decoding_674788.diff

-- 
Debian packaging of libnet-http-perl



More information about the Pkg-perl-cvs-commits mailing list