Merge pull request #3525 from FearlessTobi/linux-compile-error

input_common/udp: Fix Linux build by using a backwards compatible way of error checking
This commit is contained in:
bunnei 2020-03-21 16:04:45 -04:00 committed by GitHub
commit e70451d967
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public:
pad_index(pad_index) {
boost::system::error_code ec{};
auto ipv4 = boost::asio::ip::make_address_v4(host, ec);
if (ec.failed()) {
if (ec.value() != boost::system::errc::success) {
LOG_ERROR(Input, "Invalid IPv4 address \"{}\" provided to socket", host);
ipv4 = boost::asio::ip::address_v4{};
}