diff options
author | Joe Mason <jmason@rim.com> | 2012-08-01 13:22:02 -0400 |
---|---|---|
committer | Joe Mason <jmason@rim.com> | 2012-08-02 17:34:45 -0400 |
commit | 76ba5919573c1f75ebae60c6e6fa5d7d6f5cf98d (patch) | |
tree | a6d1a17c9abb7730239c57cd2e2e5fee8b6abbf1 /tests/httpserver.pl | |
parent | 1f8518c5d9aaa369dae85620973f9b5c1add3277 (diff) | |
download | curl-76ba5919573c1f75ebae60c6e6fa5d7d6f5cf98d.tar.gz |
Remove the --fork option of sws, since it makes refactoring to use poll more complicated and should
be redundant once we poll
Diffstat (limited to 'tests/httpserver.pl')
-rwxr-xr-x | tests/httpserver.pl | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/httpserver.pl b/tests/httpserver.pl index 66e273139..d5c4dfb27 100755 --- a/tests/httpserver.pl +++ b/tests/httpserver.pl @@ -42,7 +42,6 @@ my $pidfile; # http server pid file my $logfile; # http server log file my $connect; # IP to connect to on CONNECT my $srcdir; -my $fork; my $gopher = 0; my $flags = ""; @@ -98,9 +97,6 @@ while(@ARGV) { elsif($ARGV[0] eq '--verbose') { $verbose = 1; } - elsif($ARGV[0] eq '--fork') { - $fork = $ARGV[0]; - } else { print STDERR "\nWarning: httpserver.pl unknown parameter: $ARGV[0]\n"; } @@ -119,7 +115,6 @@ if(!$logfile) { $flags .= "--pidfile \"$pidfile\" --logfile \"$logfile\" "; $flags .= "--gopher " if($gopher); -$flags .= "--fork " if(defined($fork)); $flags .= "--connect $connect " if($connect); $flags .= "--ipv$ipvnum --port $port --srcdir \"$srcdir\""; |