diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2007-01-29 20:24:00 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2007-01-29 20:24:00 +0000 |
commit | d10e174fd1445844f00b84317bb25f90b304dd5d (patch) | |
tree | f130d94eade9a317b6163b1c30d18a94635c0ee9 /tests/libtest/lib504.c | |
parent | e994c6af753a6795bda81ee04eae65a518b2ead9 (diff) |
Some compilers lacks <sys/time.h>. Include "timeval.h" to simplify the #ifdefs.
Diffstat (limited to 'tests/libtest/lib504.c')
-rw-r--r-- | tests/libtest/lib504.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/libtest/lib504.c b/tests/libtest/lib504.c index 5b10022df..775468da0 100644 --- a/tests/libtest/lib504.c +++ b/tests/libtest/lib504.c @@ -10,7 +10,6 @@ #include "test.h" -#include <sys/time.h> #include <sys/types.h> #include "timeval.h" @@ -83,7 +82,7 @@ int test(char *URL) interval.tv_sec = 1; interval.tv_usec = 0; - if (curlx_tvdiff(curlx_tvnow(), ml_start) > + if (curlx_tvdiff(curlx_tvnow(), ml_start) > MAIN_LOOP_HANG_TIMEOUT) { ml_timedout = TRUE; break; @@ -97,7 +96,7 @@ int test(char *URL) while (res == CURLM_CALL_MULTI_PERFORM) { res = curl_multi_perform(m, &running); - if (curlx_tvdiff(curlx_tvnow(), mp_start) > + if (curlx_tvdiff(curlx_tvnow(), mp_start) > MULTI_PERFORM_HANG_TIMEOUT) { mp_timedout = TRUE; break; |