summaryrefslogtreecommitdiffstats
path: root/src/lib/dhcpsrv/host.cc
diff options
context:
space:
mode:
authormayya <mayya@itwm.fraunhofer.de>2018-07-16 23:53:29 +0200
committerTomek Mrugalski <tomasz@isc.org>2018-07-23 13:39:16 +0200
commit3606c3ba9ccaa0ab60f842cf89a9f0f9bb5b6be6 (patch)
tree7f2b6eb911917b0cb6ee11d03e1604b7b58dc338 /src/lib/dhcpsrv/host.cc
parentreview comments 2 (diff)
downloadkea-3606c3ba9ccaa0ab60f842cf89a9f0f9bb5b6be6.tar.xz
kea-3606c3ba9ccaa0ab60f842cf89a9f0f9bb5b6be6.zip
fixed minor issues
Diffstat (limited to 'src/lib/dhcpsrv/host.cc')
-rw-r--r--src/lib/dhcpsrv/host.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/dhcpsrv/host.cc b/src/lib/dhcpsrv/host.cc
index f7d2664dfa..4ec23c0d81 100644
--- a/src/lib/dhcpsrv/host.cc
+++ b/src/lib/dhcpsrv/host.cc
@@ -73,8 +73,7 @@ AuthKey::operator!=(const AuthKey& other) const {
IPv6Resrv::IPv6Resrv(const Type& type,
const asiolink::IOAddress& prefix,
const uint8_t prefix_len)
- : type_(type), prefix_(asiolink::IOAddress("::")),
- prefix_len_(128){
+ : type_(type), prefix_(asiolink::IOAddress("::")), prefix_len_(128) {
// Validate and set the actual values.
set(type, prefix, prefix_len);
}