BIND 10 master, updated. b62e62a49012ae039ecace4c4d68ad196e151cc1 [master] Add missing const on NameChangeUDPListener constructor

BIND 10 source code commits bind10-changes at lists.isc.org
Fri Jul 26 19:26:39 UTC 2013


The branch, master has been updated
       via  b62e62a49012ae039ecace4c4d68ad196e151cc1 (commit)
      from  a00b45ec9cdb590b973e5c00135f087ebdcb9aa6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b62e62a49012ae039ecace4c4d68ad196e151cc1
Author: Thomas Markwalder <tmark at isc.org>
Date:   Fri Jul 26 15:25:41 2013 -0400

    [master] Add missing const on NameChangeUDPListener constructor
    
    Build was failing under Solaris.

-----------------------------------------------------------------------

Summary of changes:
 src/lib/dhcp_ddns/ncr_msg.h  |    2 +-
 src/lib/dhcp_ddns/ncr_udp.cc |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/dhcp_ddns/ncr_msg.h b/src/lib/dhcp_ddns/ncr_msg.h
index 188af88..81eb290 100644
--- a/src/lib/dhcp_ddns/ncr_msg.h
+++ b/src/lib/dhcp_ddns/ncr_msg.h
@@ -50,7 +50,7 @@ enum NameChangeStatus  {
   ST_NEW,
   ST_PENDING,
   ST_COMPLETED,
-  ST_FAILED,
+  ST_FAILED
 };
 
 /// @brief Defines the list of data wire formats supported.
diff --git a/src/lib/dhcp_ddns/ncr_udp.cc b/src/lib/dhcp_ddns/ncr_udp.cc
index 10cfee9..55444b2 100644
--- a/src/lib/dhcp_ddns/ncr_udp.cc
+++ b/src/lib/dhcp_ddns/ncr_udp.cc
@@ -70,7 +70,7 @@ UDPCallback::putData(const uint8_t* src, size_t len) {
 //*************************** NameChangeUDPListener ***********************
 NameChangeUDPListener::
 NameChangeUDPListener(const isc::asiolink::IOAddress& ip_address,
-                      const uint32_t port, NameChangeFormat format,
+                      const uint32_t port, const NameChangeFormat format,
                       RequestReceiveHandler& ncr_recv_handler,
                       const bool reuse_address)
     : NameChangeListener(ncr_recv_handler), ip_address_(ip_address),



More information about the bind10-changes mailing list