Commit eadeb5bd authored by Tor Arntsen's avatar Tor Arntsen Committed by Kamil Dudka
Browse files

lib573: do not compare double for exact match

parent 9190e287
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
  }