Explorar el Código

test_https_time_out: fixed broken check

The old check "send () == 0" was always wrong. send() never returns zero.
As a result, the test checks nothing.
Evgeny Grin (Karlson2k) hace 4 años
padre
commit
993fd001ab
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/testcurl/https/test_https_time_out.c

+ 1 - 1
src/testcurl/https/test_https_time_out.c

@@ -88,7 +88,7 @@ test_tls_session_time_out (gnutls_session_t session, int port)
 
   /* check that server has closed the connection */
   /* TODO better RST trigger */
-  if (send (sd, "", 1, 0) == 0)
+  if (send (sd, "", 1, 0) >= 0)
   {
     fprintf (stderr, "Connection failed to time-out\n");
     MHD_socket_close_chk_ (sd);