summaryrefslogtreecommitdiffstats
path: root/src/bin/dhcp4/json_config_parser.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/dhcp4/json_config_parser.cc')
-rw-r--r--src/bin/dhcp4/json_config_parser.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/dhcp4/json_config_parser.cc b/src/bin/dhcp4/json_config_parser.cc
index 811192c41f..b26cfc4e05 100644
--- a/src/bin/dhcp4/json_config_parser.cc
+++ b/src/bin/dhcp4/json_config_parser.cc
@@ -523,7 +523,7 @@ processDhcp4Config(isc::data::ConstElementPtr config_set) {
if (hosts_databases) {
parameter_name = "hosts-databases";
CfgDbAccessPtr cfg_db_access = srv_config->getCfgDbAccess();
- for (auto it : hosts_databases->listValue()) {
+ for (auto const& it : hosts_databases->listValue()) {
db::DbAccessParser parser;
std::string access_string;
parser.parse(access_string, it);
@@ -578,7 +578,7 @@ processDhcp4Config(isc::data::ConstElementPtr config_set) {
ConstElementPtr compatibility = mutable_cfg->get("compatibility");
if (compatibility) {
- for (auto kv : compatibility->mapValue()) {
+ for (auto const& kv : compatibility->mapValue()) {
if (!kv.second || (kv.second->getType() != Element::boolean)) {
isc_throw(DhcpConfigError,
"compatibility parameter values must be "