Changeset 723

Show
Ignore:
Timestamp:
05/13/06 04:09:55
Author:
ko
Message:

bug fix to Plugin::Server::Protocol::HTTP

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/feature-server/plagger/lib/Plagger/Plugin/Server/Protocol/HTTP.pm

    r709 r723  
    3636    my $req = shift; 
    3737 
    38     my $req
    39     $req = <STDIN>; 
    40     unless ($req =~ m!^(GET|POST) ([^ ]+) HTTP/\d\.\d\r\n!) { 
     38    my $line
     39    $line = <STDIN>; 
     40    unless ($line =~ m!^(GET|POST) ([^ ]+) HTTP/\d\.\d\r\n!) { 
    4141        $self->status(400); 
    4242        return 0;