diff options
author | Razvan Becheriu <razvan@isc.org> | 2021-06-19 14:38:40 +0200 |
---|---|---|
committer | Razvan Becheriu <razvan@isc.org> | 2021-06-25 16:08:31 +0200 |
commit | f04bb7b3a8d0a464a562b129f175d5119b967cae (patch) | |
tree | 5baad674972be9b0892635681d7f691b3b6ee5f3 /src/lib/dhcp/iface_mgr.cc | |
parent | [#1902] fixed log message (diff) | |
download | kea-f04bb7b3a8d0a464a562b129f175d5119b967cae.tar.xz kea-f04bb7b3a8d0a464a562b129f175d5119b967cae.zip |
[#1836] get server identifier from client class value
Diffstat (limited to 'src/lib/dhcp/iface_mgr.cc')
-rw-r--r-- | src/lib/dhcp/iface_mgr.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dhcp/iface_mgr.cc b/src/lib/dhcp/iface_mgr.cc index 40e11635ab..dfad15e4c1 100644 --- a/src/lib/dhcp/iface_mgr.cc +++ b/src/lib/dhcp/iface_mgr.cc @@ -851,7 +851,7 @@ IfaceCollection::getIfaceInternal(const std::string& ifname, bool need_lock) { return (cache_); } } else { - if (cache_ && (cache_->getName() == ifname)) { + if (cache_ && (cache_->getName() == ifname)) { return (cache_); } } |