aboutsummaryrefslogtreecommitdiff
path: root/libbb/change_identity.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-10-31 17:34:44 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-10-31 17:34:44 +0000
commit6ae8079e2d66dd1328a32fba09e9ba6a6a79f0f9 (patch)
treea4e2c6524a05600038ce3e0b8526be8fb89af1ad /libbb/change_identity.c
parent3b8ff68ec874da01719af78dc46147d68d35c0ee (diff)
downloadbusybox-6ae8079e2d66dd1328a32fba09e9ba6a6a79f0f9.tar.gz
login: re-enable Ctrl-^C before execing shell.
Diffstat (limited to 'libbb/change_identity.c')
-rw-r--r--libbb/change_identity.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/libbb/change_identity.c b/libbb/change_identity.c
index 63c5ae1c8..3f888f523 100644
--- a/libbb/change_identity.c
+++ b/libbb/change_identity.c
@@ -28,14 +28,6 @@
* SUCH DAMAGE.
*/
-#include <stdio.h>
-#include <errno.h>
-#include <unistd.h>
-#include <string.h>
-#include <stdlib.h>
-#include <syslog.h>
-#include <ctype.h>
-
#include "libbb.h"
@@ -44,8 +36,7 @@ const char *change_identity_e2str(const struct passwd *pw)
{
if (initgroups(pw->pw_name, pw->pw_gid) == -1)
return "cannot set groups";
- endgrent();
-
+ endgrent(); /* ?? */
xsetgid(pw->pw_gid);
xsetuid(pw->pw_uid);
return NULL;
@@ -55,6 +46,6 @@ void change_identity(const struct passwd *pw)
{
const char *err_msg = change_identity_e2str(pw);
- if(err_msg)
+ if (err_msg)
bb_perror_msg_and_die("%s", err_msg);
}