Just the same patch as in my previous post, but with a more correct mime type ;-)

I feel like excite.com sends bad cookies.
"Set-Cookie: uu=i=213.193.180.194-1064396543121MJ;; ..."
the double ';' is preceded by 2 '=' in the same
'name=value' string. I guess its not right syntax.

Christophe
--- Cookies.old.pm      2002-12-26 21:32:20.000000000 +0100
+++ Cookies.pm  2003-09-24 11:56:09.000000000 +0200
@@ -297,6 +297,7 @@
            my $param;
            my $expires;
            for $param (split(/;\s*/, $set)) {
+               next if $param eq '';
                my($k,$v) = split(/\s*=\s*/, $param, 2);
                if (defined $v) {
                    $v =~ s/\s+$//;

Reply via email to