Browse Source

[2108] Fix namespace of node flags

Mukund Sivaraman 12 years ago
parent
commit
0c4fd3055f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/lib/datasrc/memory/memory_client.cc

+ 2 - 2
src/lib/datasrc/memory/memory_client.cc

@@ -476,10 +476,10 @@ public:
         // indicating the need for callback in find().
         // indicating the need for callback in find().
         if (rrset->getType() == RRType::NS() &&
         if (rrset->getType() == RRType::NS() &&
             rrset->getName() != zone_name) {
             rrset->getName() != zone_name) {
-            node->setFlag(DomainNode::FLAG_CALLBACK);
+            node->setFlag(ZoneNode::FLAG_CALLBACK);
             // If it is DNAME, we have a callback as well here
             // If it is DNAME, we have a callback as well here
         } else if (rrset->getType() == RRType::DNAME()) {
         } else if (rrset->getType() == RRType::DNAME()) {
-            node->setFlag(DomainNode::FLAG_CALLBACK);
+            node->setFlag(ZoneNode::FLAG_CALLBACK);
         }
         }
 
 
         // If we've added NSEC3PARAM at zone origin, set up NSEC3 specific
         // If we've added NSEC3PARAM at zone origin, set up NSEC3 specific