aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-05-24 21:09:49 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-05-24 21:09:49 +0000
commit3aced17c75794d42bc6803aacd0ef2881343533f (patch)
tree34c698b5d946262ba0a8187c5cd0fbe23444e9d9 /tests
parentbac63914db60744d81a01e0dc968e483663f71c9 (diff)
don't restart sockfilt after only 5 seconds of inactivity
Diffstat (limited to 'tests')
-rw-r--r--tests/ftpserver.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ftpserver.pl b/tests/ftpserver.pl
index d546bae8f..1334e9068 100644
--- a/tests/ftpserver.pl
+++ b/tests/ftpserver.pl
@@ -722,7 +722,7 @@ while(1) {
my $input;
eval {
local $SIG{ALRM} = sub { die "alarm\n" };
- alarm 5; # just in case things go bad
+ alarm 360; # just in case things go REALLY bad
$input = <STDIN>;
alarm 0;
};