diff options
Diffstat (limited to 'loginutils/getty.c')
-rw-r--r-- | loginutils/getty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loginutils/getty.c b/loginutils/getty.c index e5d13be..0f060ae 100644 --- a/loginutils/getty.c +++ b/loginutils/getty.c @@ -695,6 +695,6 @@ int getty_main(int argc UNUSED_PARAM, char **argv) /* We use PATH because we trust that root doesn't set "bad" PATH, * and getty is not suid-root applet */ /* With -n, logname == NULL, and login will ask for username instead */ - BB_EXECLP(G.login, G.login, "--", logname, NULL); + BB_EXECLP(G.login, G.login, "--", logname, (char *)0); bb_error_msg_and_die("can't execute '%s'", G.login); } |