Browse Source

[3405] Minor fix in the bundy_controller for DHCPv4.

Marcin Siodelski 11 years ago
parent
commit
26ebb4c15e
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/bin/dhcp4/bundy_controller.cc

+ 3 - 1
src/bin/dhcp4/bundy_controller.cc

@@ -134,7 +134,9 @@ bundyConfigHandler(ConstElementPtr new_config) {
 
 
 
-void ControlledDhcpv4Srv::init(const std::string& /*config_file*/) {
+void ControlledDhcpv4Srv::init(const std::string& config_file) {
+    // Call base class's init.
+    Daemon::init(config_file);
 
     string specfile;
     if (getenv("B10_FROM_BUILD")) {