]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#889,!591] fixed typo
authorRazvan Becheriu <razvan@isc.org>
Tue, 12 Nov 2019 16:08:40 +0000 (18:08 +0200)
committerRazvan Becheriu <razvan@isc.org>
Tue, 12 Nov 2019 16:08:40 +0000 (18:08 +0200)
src/lib/dhcp/libdhcp++.cc

index ef42a1dc2bcba486ceb724cc889f59908738d6a7..19fbf7acc08ec4b52a593d78dba23a1d24f53b34 100644 (file)
@@ -92,9 +92,9 @@ LibDHCP::getOptionDefs(const std::string& space) {
     static mutex local_mutex;
     if (MultiThreadingMgr::instance().getMode()) {
         std::lock_guard<std::mutex> lock(local_mutex);
-        return LibDHCP::getOptionDefs(space);
+        return LibDHCP::getOptionDefsInternal(space);
     } else {
-        return LibDHCP::getOptionDefs(space);
+        return LibDHCP::getOptionDefsInternal(space);
     }
 }