Harald Joerg <[EMAIL PROTECTED]> writes:

> HTTP::Response::clone doesn't clone the protocol either.
> This, however, can be fixed easily:

Thanks. Applied this patch to HTTP::Message so that also Requests
clone their protocol attribute.

> --- Response.pm.1.50    2004-12-02 21:36:42.437500000 +0100
> +++ Response.pm 2004-12-02 21:37:18.343750000 +0100
> @@ -47,4 +47,5 @@
>       my $self = shift;
>       my $clone = bless $self->SUPER::clone, ref($self);
> +    $clone->protocol($self->protocol);
>       $clone->code($self->code);
>       $clone->message($self->message);
> 
> -- 
> Cheers,
> haj

Reply via email to