BIND 10 trac2106, updated. 72f8c0cf002334f1cb9a63be785c018a310750ef [2106] Rewrite code to avoid using a variable
BIND 10 source code commits
bind10-changes at lists.isc.org
Sun Jul 29 20:08:59 UTC 2012
The branch, trac2106 has been updated
via 72f8c0cf002334f1cb9a63be785c018a310750ef (commit)
from 866fcdbc687f8d1350397d8f8c7f10f524054d81 (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 72f8c0cf002334f1cb9a63be785c018a310750ef
Author: Mukund Sivaraman <muks at isc.org>
Date: Mon Jul 30 01:32:02 2012 +0530
[2106] Rewrite code to avoid using a variable
-----------------------------------------------------------------------
Summary of changes:
src/lib/datasrc/memory_datasrc.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/datasrc/memory_datasrc.cc b/src/lib/datasrc/memory_datasrc.cc
index f9d6141..90b5917 100644
--- a/src/lib/datasrc/memory_datasrc.cc
+++ b/src/lib/datasrc/memory_datasrc.cc
@@ -451,9 +451,9 @@ ZoneData::findNode(const Name& name, RBTreeNodeChain<Domain>& node_path,
DomainNode* node = NULL;
FindState state((options & ZoneFinder::FIND_GLUE_OK) != 0);
- const LabelSequence ls(name);
const DomainTree::Result result =
- domains_.find(ls, &node, node_path, cutCallback, &state);
+ domains_.find(LabelSequence(name), &node, node_path,
+ cutCallback, &state);
const unsigned int zonecut_flag =
(state.zonecut_node_ != NULL) ? FindNodeResult::FIND_ZONECUT : 0;
if (result == DomainTree::EXACTMATCH) {
More information about the bind10-changes
mailing list