diff options
author | Mukund Sivaraman <muks@isc.org> | 2012-10-22 03:45:49 +0200 |
---|---|---|
committer | Mukund Sivaraman <muks@isc.org> | 2012-10-22 03:45:49 +0200 |
commit | 61256f84ff903ba7f0bddd2569f9fddcdbb194d2 (patch) | |
tree | afeacad27780876a94c29212761cd5e0921bba01 /src/bin/auth/tests/auth_srv_unittest.cc | |
parent | [2208] Update ConfigurableClientList and other bits accordingly (diff) | |
download | kea-61256f84ff903ba7f0bddd2569f9fddcdbb194d2.tar.xz kea-61256f84ff903ba7f0bddd2569f9fddcdbb194d2.zip |
[2208] Don't use .get() syntax in some places in managed ptrs
Diffstat (limited to 'src/bin/auth/tests/auth_srv_unittest.cc')
-rw-r--r-- | src/bin/auth/tests/auth_srv_unittest.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bin/auth/tests/auth_srv_unittest.cc b/src/bin/auth/tests/auth_srv_unittest.cc index 402f8b824f..e83c105cd4 100644 --- a/src/bin/auth/tests/auth_srv_unittest.cc +++ b/src/bin/auth/tests/auth_srv_unittest.cc @@ -1402,8 +1402,7 @@ public: ConfigurableClientList(RRClass::IN()), real_(real_list), config_(Element::fromJSON("{}")), - segment_(isc::datasrc::memory::ZoneTableSegment::create( - (*config_.get()))) + segment_(isc::datasrc::memory::ZoneTableSegment::create(*config_)) { BOOST_FOREACH(const DataSourceInfo& info, real_->getDataSources()) { const isc::datasrc::DataSourceClientPtr |