]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[3222] Fixed a few nits found during the review.
authorMarcin Siodelski <marcin@isc.org>
Tue, 25 Feb 2014 11:40:01 +0000 (12:40 +0100)
committerMarcin Siodelski <marcin@isc.org>
Tue, 25 Feb 2014 11:40:01 +0000 (12:40 +0100)
src/bin/d2/d2_config.cc
src/bin/d2/tests/d2_cfg_mgr_unittests.cc
src/bin/dhcp6/dhcp6_messages.mes

index 40909ed776892078047525d4bb0de58b036b71ba..2442372ec85b0c70669c5e633308f3192553ecc5 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2013 Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2013-2014 Internet Systems Consortium, Inc. ("ISC")
 //
 // Permission to use, copy, modify, and/or distribute this software for any
 // purpose with or without fee is hereby granted, provided that the above
@@ -132,7 +132,7 @@ DdnsDomainListMgr::matchDomain(const std::string& fqdn, DdnsDomainPtr& domain) {
 
         // If the lengths are identical and the names match we're done.
         if (req_len == dom_len) {
-            if (boost::iequals(fqdn,domain_name)) {
+            if (boost::iequals(fqdn, domain_name)) {
                 // exact match, done
                 domain = map_pair.second;
                 return (true);
index b0e28f801b8245b50155934dbd39db196c04a411..1bf391a27614b89779646d0c3add15540f744c40 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2013  Internet Systems Consortium, Inc. ("ISC")
+// Copyright (C) 2013-2014 Internet Systems Consortium, Inc. ("ISC")
 //
 // Permission to use, copy, modify, and/or distribute this software for any
 // purpose with or without fee is hereby granted, provided that the above
index 15c5b5abd92c18789e8c6747dd48af8bc6c1af30..33cbe7d11c27ab19b65548b6b72df52e6658d800 100644 (file)
@@ -91,6 +91,11 @@ New  values: hostname = %2, reverse mapping = %3, forward mapping = %4
 This debug message is logged when FQDN mapping for a particular lease has been
 changed by the recent Renew message. This mapping will be changed in DNS.
 
+% DHCP6_DDNS_REQUEST_SEND_FAILED failed sending a request to b10-dhcp-ddns, error: %1,  ncr: %2
+This error message indicates that IPv6 DHCP server failed to send a DDNS
+update reqeust to the DHCP-DDNS server. This is most likely a configuration or
+networking error.
+
 % DHCP6_DEACTIVATE_INTERFACE deactivate interface %1
 This message is printed when DHCPv6 server disables an interface from being
 used to receive DHCPv6 traffic. Sockets on this interface will not be opened
@@ -544,8 +549,3 @@ recently and does not recognize its well-behaving clients. This is more
 probable if you see many such messages. Clients will recover from this,
 but they will most likely get a different IP addresses and experience
 a brief service interruption.
-
-% DHCP6_DDNS_REQUEST_SEND_FAILED failed sending a request to b10-dhcp-ddns, error : %1,  ncr: %2
-This error message indicates that IPv6 DHCP server attempted to send a DDNS
-update reqeust to the DHCP-DDNS server.  This is most likely a configuration or
-networking error.