Commit 458320cf authored by Sergey Lyubka's avatar Sergey Lyubka

Fixed #343 in conn2() for Lua

parent e0214af4
......@@ -3793,7 +3793,7 @@ static sock_t conn2(const char *host, int port) {
if (host != NULL &&
(he = gethostbyname(host)) != NULL &&
(sock = socket(AF_INET, SOCK_STREAM, 0)) != INVALID_SOCKET) {
set_close_on_exec(sock);
ns_set_close_on_exec(sock);
sin.sin_family = AF_INET;
sin.sin_port = htons((uint16_t) port);
sin.sin_addr = * (struct in_addr *) he->h_addr_list[0];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment