Browse Source

[3669] Fixing trivial error in the Memfile lease manager.

The path to the kea-lfc was not initialized properly.
Marcin Siodelski 10 years ago
parent
commit
8e2d6d09b1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dhcpsrv/memfile_lease_mgr.cc

+ 1 - 1
src/lib/dhcpsrv/memfile_lease_mgr.cc

@@ -592,7 +592,7 @@ Memfile_LeaseMgr::lfcSetup() {
         args.push_back("ignored-path");
 
         // Create the process (do not start it yet).
-        lfc_process_.reset(new util::ProcessSpawn(std::string(c_executable), args));
+        lfc_process_.reset(new util::ProcessSpawn(executable, args));
     }
 }