]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1716] fixed exception messages
authorRazvan Becheriu <razvan@isc.org>
Wed, 6 Apr 2022 17:04:10 +0000 (20:04 +0300)
committerRazvan Becheriu <razvan@isc.org>
Wed, 6 Apr 2022 17:04:10 +0000 (20:04 +0300)
src/lib/dhcp/iface_mgr.cc

index fbaec39e6cd4dbbf79e2425bba40b404d8e8303f..a4cde25dd8ee550ff449a92489e7c85cf9b3eccf 100644 (file)
@@ -611,7 +611,7 @@ IfaceMgr::openSockets4(const uint16_t port, const bool use_bcast,
                                          is_open_as_broadcast);
                 } catch (const Exception& ex) {
                     IFACEMGR_ERROR(SocketConfigError, error_handler,
-                        "failed to open socket on interface "
+                        "Failed to open socket on interface "
                             << iface->getName()
                             << ", reason: "
                             << ex.what());
@@ -686,7 +686,7 @@ IfaceMgr::openSockets6(const uint16_t port,
                     IfaceMgr::openSocket(iface->getName(), addr, port, false, false);
                 } catch (const Exception& ex) {
                     IFACEMGR_ERROR(SocketConfigError, error_handler,
-                        "failed to open unicast socket on interface "
+                        "Failed to open unicast socket on interface "
                         << iface->getName()
                         << ", reason: " << ex.what());
                     continue;
@@ -725,7 +725,7 @@ IfaceMgr::openSockets6(const uint16_t port,
                     IfaceMgr::openMulticastSocket(*iface, addr, port, nullptr);
                 } catch (const Exception& ex) {
                     IFACEMGR_ERROR(SocketConfigError, error_handler,
-                        "failed to open multicast socket on interface "
+                        "Failed to open multicast socket on interface "
                         << iface->getName() << ", reason: " << ex.what());
                     continue;
                 }