diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-05-24 21:09:49 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-05-24 21:09:49 +0000 |
commit | 3aced17c75794d42bc6803aacd0ef2881343533f (patch) | |
tree | 34c698b5d946262ba0a8187c5cd0fbe23444e9d9 /tests | |
parent | bac63914db60744d81a01e0dc968e483663f71c9 (diff) | |
download | curl-3aced17c75794d42bc6803aacd0ef2881343533f.tar.gz |
don't restart sockfilt after only 5 seconds of inactivity
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ftpserver.pl | 2 |
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; }; |