fix idiotic issue where armhf for RPI-ARM failed because the 4.9 compiler is garbage;

pull/48/head
Bryan Biedenkapp 2 years ago
parent 80d38ccf3a
commit bafad81722

@ -398,5 +398,5 @@ void Socket::initAddr(const std::string& ipAddr, const int port, sockaddr_in& ad
throw std::runtime_error("Failed to parse IP address");
}
addr.sin_port = ::htons(port);
addr.sin_port = htons(port);
}

@ -790,5 +790,5 @@ void Socket::initAddr(const std::string& ipAddr, const int port, sockaddr_in& ad
throw std::runtime_error("Failed to parse IP address");
}
addr.sin_port = ::htons(port);
addr.sin_port = htons(port);
}
Loading…
Cancel
Save

Powered by TurnKey Linux.