diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-08 17:22:45 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-09-08 17:22:45 +0000 |
commit | 3a0dceb3d000e9f45a216b8ef5ce61cc3c1d0342 (patch) | |
tree | 4c02333e3a7fea88a5a44fb8a00ead25dad0b06e /libbb | |
parent | fa9b47a9506d1e15ea9aed5cfbeff8c2279ba8da (diff) | |
download | busybox-w32-3a0dceb3d000e9f45a216b8ef5ce61cc3c1d0342.tar.gz busybox-w32-3a0dceb3d000e9f45a216b8ef5ce61cc3c1d0342.tar.bz2 busybox-w32-3a0dceb3d000e9f45a216b8ef5ce61cc3c1d0342.zip |
login: style fixes
git-svn-id: svn://busybox.net/trunk/busybox@16072 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 @@ | |||
40 | 40 | ||
41 | 41 | ||
42 | /* Become the user and group(s) specified by PW. */ | 42 | /* Become the user and group(s) specified by PW. */ |
43 | const char *change_identity_e2str ( const struct passwd *pw ) | 43 | const char *change_identity_e2str(const struct passwd *pw) |
44 | { | 44 | { |
45 | if ( initgroups ( pw-> pw_name, pw-> pw_gid ) == -1 ) | 45 | if (initgroups(pw->pw_name, pw->pw_gid) == -1) |
46 | return "cannot set groups"; | 46 | return "cannot set groups"; |
47 | endgrent ( ); | 47 | endgrent(); |
48 | 48 | ||
49 | xsetgid(pw-> pw_gid); | 49 | xsetgid(pw->pw_gid); |
50 | xsetuid(pw->pw_uid); | 50 | xsetuid(pw->pw_uid); |
51 | return NULL; | 51 | return NULL; |
52 | } | 52 | } |
53 | 53 | ||
54 | void change_identity ( const struct passwd *pw ) | 54 | void change_identity(const struct passwd *pw) |
55 | { | 55 | { |
56 | const char *err_msg = change_identity_e2str(pw); | 56 | const char *err_msg = change_identity_e2str(pw); |
57 | 57 | ||
58 | if(err_msg) | 58 | if(err_msg) |
59 | bb_perror_msg_and_die ( "%s", err_msg ); | 59 | bb_perror_msg_and_die("%s", err_msg); |
60 | } | 60 | } |