diff options
Diffstat (limited to 'src/testcurl/https/test_https_multi_daemon.c')
-rw-r--r-- | src/testcurl/https/test_https_multi_daemon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testcurl/https/test_https_multi_daemon.c b/src/testcurl/https/test_https_multi_daemon.c index de153ff6..598d5592 100644 --- a/src/testcurl/https/test_https_multi_daemon.c +++ b/src/testcurl/https/test_https_multi_daemon.c | |||
@@ -78,7 +78,7 @@ test_concurent_daemon_pair (void *cls, | |||
78 | { | 78 | { |
79 | const union MHD_DaemonInfo *dinfo; | 79 | const union MHD_DaemonInfo *dinfo; |
80 | dinfo = MHD_get_daemon_info (d1, MHD_DAEMON_INFO_BIND_PORT); | 80 | dinfo = MHD_get_daemon_info (d1, MHD_DAEMON_INFO_BIND_PORT); |
81 | if ((NULL == dinfo) ||(0 == dinfo->port) ) | 81 | if ((NULL == dinfo) || (0 == dinfo->port) ) |
82 | { | 82 | { |
83 | MHD_stop_daemon (d1); return -1; | 83 | MHD_stop_daemon (d1); return -1; |
84 | } | 84 | } |
@@ -103,7 +103,7 @@ test_concurent_daemon_pair (void *cls, | |||
103 | { | 103 | { |
104 | const union MHD_DaemonInfo *dinfo; | 104 | const union MHD_DaemonInfo *dinfo; |
105 | dinfo = MHD_get_daemon_info (d2, MHD_DAEMON_INFO_BIND_PORT); | 105 | dinfo = MHD_get_daemon_info (d2, MHD_DAEMON_INFO_BIND_PORT); |
106 | if ((NULL == dinfo) ||(0 == dinfo->port) ) | 106 | if ((NULL == dinfo) || (0 == dinfo->port) ) |
107 | { | 107 | { |
108 | MHD_stop_daemon (d1); | 108 | MHD_stop_daemon (d1); |
109 | MHD_stop_daemon (d2); | 109 | MHD_stop_daemon (d2); |