diff options
Diffstat (limited to 'src/testcurl/https/test_https_get_select.c')
-rw-r--r-- | src/testcurl/https/test_https_get_select.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/testcurl/https/test_https_get_select.c b/src/testcurl/https/test_https_get_select.c index ce74c1d7..e5bd73f5 100644 --- a/src/testcurl/https/test_https_get_select.c +++ b/src/testcurl/https/test_https_get_select.c | |||
@@ -118,7 +118,7 @@ testExternalGet (int flags) | |||
118 | { | 118 | { |
119 | const union MHD_DaemonInfo *dinfo; | 119 | const union MHD_DaemonInfo *dinfo; |
120 | dinfo = MHD_get_daemon_info (d, MHD_DAEMON_INFO_BIND_PORT); | 120 | dinfo = MHD_get_daemon_info (d, MHD_DAEMON_INFO_BIND_PORT); |
121 | if ((NULL == dinfo) ||(0 == dinfo->port) ) | 121 | if ((NULL == dinfo) || (0 == dinfo->port) ) |
122 | { | 122 | { |
123 | MHD_stop_daemon (d); return 32; | 123 | MHD_stop_daemon (d); return 32; |
124 | } | 124 | } |
@@ -201,10 +201,10 @@ testExternalGet (int flags) | |||
201 | if (EINTR != errno) | 201 | if (EINTR != errno) |
202 | abort (); | 202 | abort (); |
203 | #else | 203 | #else |
204 | if ((WSAEINVAL != WSAGetLastError ()) ||(0 != rs.fd_count) ||(0 != | 204 | if ((WSAEINVAL != WSAGetLastError ()) || (0 != rs.fd_count) || (0 != |
205 | ws. | 205 | ws. |
206 | fd_count) | 206 | fd_count) |
207 | ||(0 != es.fd_count) ) | 207 | || (0 != es.fd_count) ) |
208 | abort (); | 208 | abort (); |
209 | Sleep (1000); | 209 | Sleep (1000); |
210 | #endif | 210 | #endif |