]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2206] Fix const variant of getTable()
authorMukund Sivaraman <muks@isc.org>
Wed, 3 Oct 2012 05:27:59 +0000 (10:57 +0530)
committerMukund Sivaraman <muks@isc.org>
Wed, 3 Oct 2012 05:27:59 +0000 (10:57 +0530)
src/lib/datasrc/memory/zone_table_segment.h

index e910696c656a7521411cad3b1e2b632138b48dc8..9bac09732d22dbab165af29d55594a6d37242bc5 100644 (file)
@@ -42,7 +42,7 @@ public:
 
     /// \brief const version of \c getTable().
     const ZoneTable* getTable() const {
-        return (getTable());
+        return (table.get());
     }
 
 private: