X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=libbb%2Fchange_identity.c;h=619db09a85e211e2c543e72d08cbdd3d66cbe431;hb=08ea11ab0749a7977e6d47cd0fa7b3c9cc10af32;hp=3f888f523bd1f53a97f7e824545b15b82af8c82f;hpb=6ae8079e2d66dd1328a32fba09e9ba6a6a79f0f9;p=oweals%2Fbusybox.git diff --git a/libbb/change_identity.c b/libbb/change_identity.c index 3f888f523..619db09a8 100644 --- a/libbb/change_identity.c +++ b/libbb/change_identity.c @@ -30,22 +30,12 @@ #include "libbb.h" - /* Become the user and group(s) specified by PW. */ -const char *change_identity_e2str(const struct passwd *pw) +void FAST_FUNC change_identity(const struct passwd *pw) { if (initgroups(pw->pw_name, pw->pw_gid) == -1) - return "cannot set groups"; - endgrent(); /* ?? */ + bb_perror_msg_and_die("can't set groups"); + endgrent(); /* helps to close a fd used internally by libc */ xsetgid(pw->pw_gid); xsetuid(pw->pw_uid); - return NULL; -} - -void change_identity(const struct passwd *pw) -{ - const char *err_msg = change_identity_e2str(pw); - - if (err_msg) - bb_perror_msg_and_die("%s", err_msg); }