Fixed missing $ in variable

This commit is contained in:
donbuehl
2024-08-19 22:14:46 +02:00
parent c62ef28fc3
commit d7b4dfd44b

View File

@@ -45,10 +45,10 @@ function getUserShell() {
}
} catch (Throwable $t) {
syslog(LOG_ERR, 'Error determining user shell: ' . $t->getMessage());
return defaultShell;
return $defaultShell;
}
return defaultShell;
return $defaultShell;
}
function wait($name,$cmd) {