1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

http_conn.c: fix "void function cannot return value" error

this made the studio compiler build break

Signed-off-by: Bjoern Jacke <bjacke@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Björn Jacke 2020-10-18 20:43:26 +02:00 committed by Andrew Bartlett
parent bbfd93f7b6
commit a4e90cfec4

View File

@ -156,8 +156,7 @@ static void http_connect_dns_done(struct tevent_req *subreq)
if (tevent_req_nomem(state->http_server_ip, req)) {
return;
}
return http_connect_tcp_connect(req);
http_connect_tcp_connect(req);
}
static void http_connect_tcp_connect(struct tevent_req *req)