aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'roots.cpp')
-rw-r--r--roots.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/roots.cpp b/roots.cpp
index e2d5d654..9ff5186c 100644
--- a/roots.cpp
+++ b/roots.cpp
@@ -189,7 +189,7 @@ static int exec_cmd(const std::vector<std::string>& args) {
189 argv.push_back(nullptr); 189 argv.push_back(nullptr);
190 190
191 pid_t child; 191 pid_t child;
192 if ((child = vfork()) == 0) { 192 if ((child = fork()) == 0) {
193 execv(argv[0], argv.data()); 193 execv(argv[0], argv.data());
194 _exit(EXIT_FAILURE); 194 _exit(EXIT_FAILURE);
195 } 195 }