diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-08-26 23:01:34 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-08-26 23:01:34 +0000 |
commit | 37ba6bfb6d7ff7287ecda14bb4906fa6de1e78c9 (patch) | |
tree | c5d7459d1f9fda55e005028e28171a3cb729ac49 /include | |
parent | 095dd0c46df224c9b4c59327116534452731d457 (diff) |
The login applet should always be setuid root
Diffstat (limited to 'include')
-rw-r--r-- | include/applets.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/applets.h b/include/applets.h index c54fb9131..90d4195cc 100644 --- a/include/applets.h +++ b/include/applets.h @@ -341,7 +341,7 @@ APPLET(logger, logger_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) #endif #ifdef CONFIG_LOGIN - APPLET(login, login_main, _BB_DIR_BIN, _BB_SUID_NEVER) + APPLET(login, login_main, _BB_DIR_BIN, _BB_SUID_ALWAYS) #endif #ifdef CONFIG_LOGNAME APPLET(logname, logname_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) |