]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2284] minor comment update about in-memory finder context's getFinder().
authorJINMEI Tatuya <jinmei@isc.org>
Thu, 4 Oct 2012 21:30:31 +0000 (14:30 -0700)
committerJINMEI Tatuya <jinmei@isc.org>
Thu, 4 Oct 2012 21:30:31 +0000 (14:30 -0700)
with the cleanup in this ticket we can now actually return NULL, but
intermediate status of other #2283 tickets will require non NULL values.
So, it's probably better to keep the behavior with referring to #2283,
instead of #2284.

src/lib/datasrc/memory/zone_finder.cc

index 7b36521d59d09f0a24dd74d6539a2e56dec1b09d..86dd87428c986dd978f1c1cb206a880df5f63580 100644 (file)
@@ -538,14 +538,14 @@ public:
             const RRClass& rrclass, const ZoneFinderResultContext& result) :
         ZoneFinder::Context(options, ResultContext(result.code, result.rrset,
                                                    result.flags)),
-        finder_(finder),        // NOTE: when #2284 is done we won't need this
+        finder_(finder), // NOTE: when entire #2283 is done we won't need this
         rrclass_(rrclass), zone_data_(result.zone_data),
         found_node_(result.found_node),
         found_rdset_(result.found_rdset)
     {}
 
 protected:
-    // When #2284 is done this can simply return NULL.
+    // When all tickets in #2283 are done this can simply return NULL.
     virtual ZoneFinder* getFinder() { return (&finder_); }
 
     // We don't use the default protected methods that rely on this method,