diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-08 17:22:45 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-08 17:22:45 +0000 |
commit | 2e502914b0a2281e5d87b5093da5fb9e9759a601 (patch) | |
tree | 4c02333e3a7fea88a5a44fb8a00ead25dad0b06e /libbb | |
parent | dd93abeaffa79efcf3028489b7638f2c723020e8 (diff) | |
download | busybox-2e502914b0a2281e5d87b5093da5fb9e9759a601.tar.gz |
login: style fixes
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/change_identity.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libbb/change_identity.c b/libbb/change_identity.c index 74ffccbd3..63c5ae1c8 100644 --- a/libbb/change_identity.c +++ b/libbb/change_identity.c @@ -40,21 +40,21 @@ /* Become the user and group(s) specified by PW. */ -const char *change_identity_e2str ( const struct passwd *pw ) +const char *change_identity_e2str(const struct passwd *pw) { - if ( initgroups ( pw-> pw_name, pw-> pw_gid ) == -1 ) + if (initgroups(pw->pw_name, pw->pw_gid) == -1) return "cannot set groups"; - endgrent ( ); + endgrent(); - xsetgid(pw-> pw_gid); + xsetgid(pw->pw_gid); xsetuid(pw->pw_uid); return NULL; } -void change_identity ( const struct passwd *pw ) +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 ); + bb_perror_msg_and_die("%s", err_msg); } |