commit | 3211adc184c8d48d91c1fb59cdba4d17e2b84b1d | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Thu Apr 12 20:33:01 2007 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Thu Apr 12 20:33:01 2007 +0000 |
tree | e7a31991a6a3e2fa487d19b872c6e62575d7e6a1 | |
parent | 3a62a737f7df06b1762c37b10be0d3985ab9fc1a [diff] [blame] |
login: fixing my brainfart: xspawn(t_argv) <- was using argv!
diff --git a/loginutils/login.c b/loginutils/login.c index 6a82998..232c610 100644 --- a/loginutils/login.c +++ b/loginutils/login.c
@@ -354,7 +354,7 @@ xsetenv("LOGIN_UID", utoa(pw->pw_uid)); xsetenv("LOGIN_GID", utoa(pw->pw_gid)); xsetenv("LOGIN_SHELL", pw->pw_shell); - xspawn(argv); /* NOMMU-friendly */ + xspawn(t_argv); /* NOMMU-friendly */ /* All variables are unset by setup_environment */ wait(NULL); }