mirror of
https://github.com/curl/curl.git
synced 2026-04-15 02:21:41 +03:00
lib573: do not compare double for exact match
This commit is contained in:
parent
9190e2876e
commit
eadeb5bd9a
1 changed files with 2 additions and 2 deletions
|
|
@ -83,8 +83,8 @@ int test(char *URL)
|
|||
}
|
||||
|
||||
curl_easy_getinfo(c, CURLINFO_CONNECT_TIME, &connect_time);
|
||||
if (connect_time==0.0) {
|
||||
fprintf(stderr, "connect time is 0.0\n");
|
||||
if (connect_time <= 0.0) {
|
||||
fprintf(stderr, "connect time is <=0.0\n");
|
||||
res = TEST_ERR_MAJOR_BAD;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue