ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Coro/myhttpd/httpd.pl
(Generate patch)

Comparing cvsroot/Coro/myhttpd/httpd.pl (file contents):
Revision 1.88 by root, Thu Nov 20 14:33:57 2008 UTC vs.
Revision 1.89 by root, Sun Jan 24 20:44:34 2010 UTC

466 } else { 466 } else {
467 $self->err (404, "not found"); 467 $self->err (404, "not found");
468 } 468 }
469 } else { 469 } else {
470 470
471 stat $path 471 Coro::AIO::aio_stat $path
472 or $self->err (404, "not found"); 472 and $self->err (404, "not found");
473 473
474 $self->{stat} = [stat _]; 474 $self->{stat} = [stat _];
475 475
476 # idiotic netscape sends idiotic headers AGAIN 476 # idiotic netscape sends idiotic headers AGAIN
477 my $ims = $self->{h}{"if-modified-since"} =~ /^([^;]+)/ 477 my $ims = $self->{h}{"if-modified-since"} =~ /^([^;]+)/

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines