aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/user_init/user_init.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/user_init/user_init.c b/src/user_init/user_init.c
index 9d21f39e..a9072e3a 100644
--- a/src/user_init/user_init.c
+++ b/src/user_init/user_init.c
@@ -22,6 +22,7 @@ int main(int argc, char **argv) {
return 1;
setenv("HOME", user->pw_dir, true);
+ setenv("SHELL", user->pw_shell, true);
xasprintf(&cmd, "%s %s", USERINIT, argv[2]);
execl(user->pw_shell, user->pw_shell, "-c", cmd, NULL);
}