aboutsummaryrefslogtreecommitdiff
path: root/perl/fcgi.pl
diff options
context:
space:
mode:
Diffstat (limited to 'perl/fcgi.pl')
-rwxr-xr-xperl/fcgi.pl1
1 files changed, 0 insertions, 1 deletions
diff --git a/perl/fcgi.pl b/perl/fcgi.pl
index 0f3dff8..b3e6d9e 100755
--- a/perl/fcgi.pl
+++ b/perl/fcgi.pl
@@ -11,7 +11,6 @@ BEGIN { require 'cgi.pl'; }
while (1) {
try {
- open STDERR, '>', LOG_FILE or die LOG_FILE . ": $!";
my $request = FCGI::Request( \*STDIN, \*STDOUT, \*STDERR, \%ENV, BARE_REQUEST ? 0 : FCGI::OpenSocket(SOCKET_FILE, SOCKET_MAX_CONNECTIONS));
while($request->Accept() >= 0) {
master();