Typo fixed.
This commit is contained in:
parent
734cc23e1f
commit
27fd725c6d
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ static int meth_sendto(lua_State *L) {
|
||||||
case PF_INET6: {
|
case PF_INET6: {
|
||||||
struct sockaddr_in6 addr;
|
struct sockaddr_in6 addr;
|
||||||
memset(&addr, 0, sizeof(addr));
|
memset(&addr, 0, sizeof(addr));
|
||||||
if (!inet_pton(AF_INET6, ip, &addr.sin6_addr) != 1)
|
if (inet_pton(AF_INET6, ip, &addr.sin6_addr) != 1)
|
||||||
luaL_argerror(L, 3, "invalid ip address");
|
luaL_argerror(L, 3, "invalid ip address");
|
||||||
addr.sin6_family = AF_INET6;
|
addr.sin6_family = AF_INET6;
|
||||||
addr.sin6_port = htons(port);
|
addr.sin6_port = htons(port);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue