BIND 10 trac3036, updated. 334e3b332c8ad84b4e4c04453a43303cd2706a33 [3036] Logging fix (test used to fail with --enable-logger-checks)

BIND 10 source code commits bind10-changes at lists.isc.org
Wed Aug 14 14:15:25 UTC 2013


The branch, trac3036 has been updated
       via  334e3b332c8ad84b4e4c04453a43303cd2706a33 (commit)
       via  d7173396ffa2c262f1a3e587152bef7ad323e4cb (commit)
      from  785e97d51905a7d7d7d32d08ac7d82ceee272fc2 (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 334e3b332c8ad84b4e4c04453a43303cd2706a33
Author: Tomek Mrugalski <tomasz at isc.org>
Date:   Wed Aug 14 16:15:09 2013 +0200

    [3036] Logging fix (test used to fail with --enable-logger-checks)

commit d7173396ffa2c262f1a3e587152bef7ad323e4cb
Author: Tomek Mrugalski <tomasz at isc.org>
Date:   Wed Aug 14 16:14:35 2013 +0200

    [3036] Botan compilation fixes in dhcp-ddns

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

Summary of changes:
 src/bin/dhcp6/dhcp6_srv.cc          |    3 ++-
 src/lib/dhcp_ddns/Makefile.am       |    2 +-
 src/lib/dhcp_ddns/tests/Makefile.am |    2 +-
 3 files changed, 4 insertions(+), 3 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/bin/dhcp6/dhcp6_srv.cc b/src/bin/dhcp6/dhcp6_srv.cc
index c3fd6ad..5941a6c 100644
--- a/src/bin/dhcp6/dhcp6_srv.cc
+++ b/src/bin/dhcp6/dhcp6_srv.cc
@@ -1104,7 +1104,8 @@ Dhcpv6Srv::createRemovalNameChangeRequest(const Lease6Ptr& lease) {
     try {
         OptionDataTypeUtil::writeFqdn(lease->hostname_, hostname_wire, true);
     } catch (const Exception& ex) {
-        LOG_ERROR(dhcp6_logger, DHCP6_DDNS_REMOVE_INVALID_HOSTNAME);
+        LOG_ERROR(dhcp6_logger, DHCP6_DDNS_REMOVE_INVALID_HOSTNAME)
+            .arg(lease->hostname_);
         return;
     }
 
diff --git a/src/lib/dhcp_ddns/Makefile.am b/src/lib/dhcp_ddns/Makefile.am
index 260288b..0e1990e 100644
--- a/src/lib/dhcp_ddns/Makefile.am
+++ b/src/lib/dhcp_ddns/Makefile.am
@@ -1,7 +1,7 @@
 SUBDIRS = . tests
 
 AM_CPPFLAGS  = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
-AM_CPPFLAGS += $(BOOST_INCLUDES) $(BOTAN_INCLUDE)
+AM_CPPFLAGS += $(BOOST_INCLUDES) $(BOTAN_INCLUDES)
 AM_CXXFLAGS  = $(B10_CXXFLAGS)
 
 # Some versions of GCC warn about some versions of Boost regarding
diff --git a/src/lib/dhcp_ddns/tests/Makefile.am b/src/lib/dhcp_ddns/tests/Makefile.am
index ca39064..1a03833 100644
--- a/src/lib/dhcp_ddns/tests/Makefile.am
+++ b/src/lib/dhcp_ddns/tests/Makefile.am
@@ -1,7 +1,7 @@
 SUBDIRS = .
 
 AM_CPPFLAGS = -I$(top_builddir)/src/lib -I$(top_srcdir)/src/lib
-AM_CPPFLAGS += $(BOOST_INCLUDES) $(BOTAN_INCLUDE)
+AM_CPPFLAGS += $(BOOST_INCLUDES) $(BOTAN_INCLUDES)
 AM_CPPFLAGS += -DTEST_DATA_BUILDDIR=\"$(abs_top_builddir)/src/lib/dhcp_ddns/tests\"
 AM_CPPFLAGS += -DINSTALL_PROG=\"$(abs_top_srcdir)/install-sh\"
 



More information about the bind10-changes mailing list