From c451a92d0f2a79db81ba134c642512577443edec Mon Sep 17 00:00:00 2001 From: Henry N Date: Sun, 22 Mar 2020 14:32:40 +0100 Subject: [PATCH] Not terminate, if SIOCSIFTXQLEN fail Do not terminate freelan, if SIOCSIFTXQLEN can not set. 100 is the default value. So, it is no problem, if this can not set. --- libs/asiotap/src/posix/posix_tap_adapter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/asiotap/src/posix/posix_tap_adapter.cpp b/libs/asiotap/src/posix/posix_tap_adapter.cpp index 661d6073..92ff08be 100644 --- a/libs/asiotap/src/posix/posix_tap_adapter.cpp +++ b/libs/asiotap/src/posix/posix_tap_adapter.cpp @@ -318,7 +318,7 @@ namespace asiotap { ec = boost::system::error_code(errno, boost::system::system_category()); - return; + /* Whithout return, because 100 is default and would work to. */ } // Reset the structure for the next call.