Parcourir la source

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

The path to the kea-lfc was not initialized properly.
Marcin Siodelski il y a 10 ans
Parent
commit
8e2d6d09b1
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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));
     }
 }