diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2006-09-10 19:01:04 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2006-09-10 19:01:04 +0000 |
commit | e134a4020885701b583b8af2e9d0414b090512f6 (patch) | |
tree | b93c895fb130564d17bce96d13c73b63edb7918a /tests/libtest/lib526.c | |
parent | 690888cfc107c16980785195ca9e05acba51593a (diff) | |
download | curl-e134a4020885701b583b8af2e9d0414b090512f6.tar.gz |
Added select_test() function to allow selecting on no sockets on
Winsock.
Diffstat (limited to 'tests/libtest/lib526.c')
-rw-r--r-- | tests/libtest/lib526.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib526.c b/tests/libtest/lib526.c index 5050b27f2..de3a36d02 100644 --- a/tests/libtest/lib526.c +++ b/tests/libtest/lib526.c @@ -106,7 +106,7 @@ int test(char *URL) break; } - if (select(max_fd+1, &rd, &wr, &exc, &interval) == -1) { + if (select_test(max_fd+1, &rd, &wr, &exc, &interval) == -1) { fprintf(stderr, "bad select??\n"); res = 195; break; |