Commit 8dd7eb4d authored by abecsi@webkit.org's avatar abecsi@webkit.org

Correct openHTTPD() to print requests to stdout if run-webkit-httpd is used.

This fixes a regression introduced in r53559.

Reviewed by Alexey Proskuryakov.

https://bugs.webkit.org/show_bug.cgi?id=34336

* Scripts/webkitperl/httpd.pm:



git-svn-id: svn://svn.chromium.org/blink/trunk@54084 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 28e89396
2010-01-29 Andras Becsi <abecsi@webkit.org>
Reviewed by Alexey Proskuryakov.
Correct openHTTPD() to print requests to stdout if run-webkit-httpd is used.
This fixes a regression introduced in r53559.
https://bugs.webkit.org/show_bug.cgi?id=34336
* Scripts/webkitperl/httpd.pm:
2010-01-28 Jon Honeycutt <jhoneycutt@apple.com>
MSAA: Crash when posting a notification for a detached object
......
......@@ -147,7 +147,7 @@ sub openHTTPD(@)
$httpdPath = "/usr/sbin/httpd" unless ($httpdPath);
open2(\*HTTPDIN, \*HTTPDOUT, $httpdPath, @args);
open2(">&1", \*HTTPDIN, $httpdPath, @args);
my $retryCount = 20;
while (!-f $httpdPidFile && $retryCount) {
......@@ -172,8 +172,6 @@ sub openHTTPD(@)
sub closeHTTPD
{
close HTTPDIN;
close HTTPDOUT;
if ($httpdPid) {
kill 15, $httpdPid;
my $retryCount = 20;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment