diff options
author | JINMEI Tatuya <jinmei@isc.org> | 2012-10-06 02:04:28 +0200 |
---|---|---|
committer | JINMEI Tatuya <jinmei@isc.org> | 2012-10-06 02:04:28 +0200 |
commit | 86a4bae1ffa68eb38921d6cb3f16dad43b616009 (patch) | |
tree | 032b4a867544163a522395a26f96a628314e1ff8 /src/bin/auth/main.cc | |
parent | [2204] regression fix: make sure the datasrc config is installed to server. (diff) | |
download | kea-86a4bae1ffa68eb38921d6cb3f16dad43b616009.tar.xz kea-86a4bae1ffa68eb38921d6cb3f16dad43b616009.zip |
[2204] cleanup: removed unused func, and renamed "ClientList" with "DataSrc".
getClientListClasses() was removed. It's not used anymore.
a few methods named with "ClientList" were renamed with adding "DataSrc".
The resulting names are a bit long, but since there's no namespace
qualification, simply saying "client" can be confusing (it could be
interpreted to mean DNS clients, for example).
Diffstat (limited to 'src/bin/auth/main.cc')
-rw-r--r-- | src/bin/auth/main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/auth/main.cc b/src/bin/auth/main.cc index d9b01314a2..1e3ca9c3de 100644 --- a/src/bin/auth/main.cc +++ b/src/bin/auth/main.cc @@ -114,7 +114,7 @@ datasrcConfigHandler(AuthSrv* server, bool* first_time, // swap. { isc::util::thread::Mutex::Locker locker( - server->getClientListMutex()); + server->getDataSrcClientListMutex()); lists = server->swapDataSrcClientLists(lists); } // The previous lists are destroyed here. Note that it's outside |