Browse Source

[3539] Trivial fix in the error message thrown by the CfgIface.

Marcin Siodelski 10 years ago
parent
commit
9d1329b43d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/lib/dhcpsrv/cfg_iface.cc

+ 2 - 2
src/lib/dhcpsrv/cfg_iface.cc

@@ -280,9 +280,9 @@ CfgIface::use(const uint16_t family, const std::string& iface_name) {
         // Insert address and the interface to the collection of unicast
         // addresses.
         if (address_map_.find(name) != address_map_.end()) {
-            isc_throw(DuplicateIfaceName, "must not specify unicast address '"
+            isc_throw(DuplicateIfaceName, "must not select address '"
                       << addr << "' for interface '" << name << "' "
-                      "because other unicast address has already been"
+                      "because another address has already been"
                       " specified for this interface");
         }