summaryrefslogtreecommitdiffstats
path: root/src/lib/dhcpsrv/cfg_option_def.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/dhcpsrv/cfg_option_def.cc')
-rw-r--r--src/lib/dhcpsrv/cfg_option_def.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/dhcpsrv/cfg_option_def.cc b/src/lib/dhcpsrv/cfg_option_def.cc
index 02de922ee1..e154d19441 100644
--- a/src/lib/dhcpsrv/cfg_option_def.cc
+++ b/src/lib/dhcpsrv/cfg_option_def.cc
@@ -240,16 +240,16 @@ CfgOptionDef::merge(CfgOptionDef& other) {
// Iterate over this config's definitions in each space.
// If either a definition's name or code already exist in
// that space in "other", skip it. Otherwise, add it to "other".
- for (auto space : option_definitions_.getOptionSpaceNames()) {
- for (auto my_def : *(getAll(space))) {
- if ((other.get(space, my_def->getName())) ||
- (other.get(space, my_def->getCode()))) {
+ for (auto const& space : option_definitions_.getOptionSpaceNames()) {
+ for (auto const& tmp_def : *(getAll(space))) {
+ if ((other.get(space, tmp_def->getName())) ||
+ (other.get(space, tmp_def->getCode()))) {
// Already in "other" so skip it.
continue;
}
// Not in "other" so add it.
- other.add(my_def);
+ other.add(tmp_def);
}
}