diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-28 21:33:30 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-28 21:33:30 +0000 |
commit | 7fa0fcafca76454effc65f8c3121a37cf0952ff9 (patch) | |
tree | 7342a1d3a0320d586b7e18cdadb8cab580e32e79 /loginutils | |
parent | 9a44c4f91ce7e517d5325fd3743e6ad9d54ef3f0 (diff) | |
download | busybox-7fa0fcafca76454effc65f8c3121a37cf0952ff9.tar.gz |
fix build without shadow support
Diffstat (limited to 'loginutils')
-rw-r--r-- | loginutils/sulogin.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/loginutils/sulogin.c b/loginutils/sulogin.c index c07264e7b..30f9d9350 100644 --- a/loginutils/sulogin.c +++ b/loginutils/sulogin.c @@ -41,7 +41,6 @@ int sulogin_main(int argc, char **argv) char *timeout_arg; const char * const *p; struct passwd *pwd; - struct spwd *spwd; const char *shell; logmode = LOGMODE_BOTH; @@ -76,7 +75,7 @@ int sulogin_main(int argc, char **argv) } if (ENABLE_FEATURE_SHADOWPASSWDS) { - spwd = getspnam(pwd->pw_name); + struct spwd *spwd = getspnam(pwd->pw_name); if (!spwd) { goto auth_error; } |