Skip to content

Commit

Permalink
Change of DHCP enable flag is not triggering an update.
Browse files Browse the repository at this point in the history
Handle change of dhcp enable flag to trigger an update in the interface.
closes-bug: #1571998

Change-Id: I3120ea3711c8fba897f33c4b3419aa7c4fc0ded6
  • Loading branch information
haripk committed Apr 19, 2016
1 parent 76cb357 commit 5f01ff3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/vnsw/agent/oper/vn.cc
Expand Up @@ -940,6 +940,7 @@ bool VnTable::IpamChangeNotify(std::vector<VnIpam> &old_ipam,

if ((*it_old).dhcp_enable != (*it_new).dhcp_enable) {
(*it_old).dhcp_enable = (*it_new).dhcp_enable;
change = true;
}

it_old++;
Expand Down

0 comments on commit 5f01ff3

Please sign in to comment.