aboutsummaryrefslogtreecommitdiff
path: root/coreutils/id.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-09-13 12:51:10 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-09-13 12:51:10 +0000
commit4f3209b9d4b24ebe9b76e3bfe8ddd87af5228af9 (patch)
treed6158492612846aecbdae95160d6e4ae51166622 /coreutils/id.c
parent0ee1cb00849355126eb59e8f3fccb02b4db2f5ed (diff)
downloadbusybox-4f3209b9d4b24ebe9b76e3bfe8ddd87af5228af9.tar.gz
id: code shrink
function old new delta id_main 494 462 -32
Diffstat (limited to 'coreutils/id.c')
-rw-r--r--coreutils/id.c37
1 files changed, 19 insertions, 18 deletions
diff --git a/coreutils/id.c b/coreutils/id.c
index b2f3b20e1..cf642c209 100644
--- a/coreutils/id.c
+++ b/coreutils/id.c
@@ -45,7 +45,7 @@ int id_main(int argc UNUSED_PARAM, char **argv)
uid_t uid;
gid_t gid;
gid_t *groups;
- int grp;
+ int n;
unsigned long flags;
short status;
#if ENABLE_SELINUX
@@ -72,17 +72,17 @@ int id_main(int argc UNUSED_PARAM, char **argv)
/* in this case PRINT_REAL is the same */
}
- grp = getgroups(0, 0);
- groups = (gid_t *)xmalloc(sizeof(gid_t) * grp);
- getgroups(grp, (gid_t *)groups);
+ n = getgroups(0, NULL);
+ groups = xmalloc(sizeof(groups[0]) * n);
+ getgroups(n, groups);
- if (flags & (JUST_ALL_GROUPS)) {
- while (grp--) {
+ if (flags & JUST_ALL_GROUPS) {
+ while (n--) {
if (flags & NAME_NOT_NUMBER)
printf("%s", bb_getgrgid(NULL, 0, *groups++));
else
- printf("%d", *groups++);
- bb_putchar((grp > 0) ? ' ' : '\n');
+ printf("%d", (int) *groups++);
+ bb_putchar((n > 0) ? ' ' : '\n');
}
/* exit */
fflush_stdout_and_exit(EXIT_SUCCESS);
@@ -105,7 +105,7 @@ int id_main(int argc UNUSED_PARAM, char **argv)
#if ENABLE_SELINUX
if (flags & JUST_CONTEXT) {
selinux_or_die();
- if (argc - optind == 1) {
+ if (argv[optind]) {
bb_error_msg_and_die("user name can't be passed with -Z");
}
@@ -122,16 +122,17 @@ int id_main(int argc UNUSED_PARAM, char **argv)
/* Print full info like GNU id */
/* bb_getpwuid(0) doesn't exit on failure (returns NULL) */
status = printf_full(uid, bb_getpwuid(NULL, 0, uid), "uid=");
- bb_putchar(' ');
- status |= printf_full(gid, bb_getgrgid(NULL, 0, gid), "gid=");
- printf(" groups=");
- while (grp--) {
- status |= printf_full(*groups, bb_getgrgid(NULL, 0, *groups), "");
- if (grp > 0)
- bb_putchar(',');
- groups++;
+ status |= printf_full(gid, bb_getgrgid(NULL, 0, gid), " gid=");
+ {
+ const char *msg = " groups=";
+ while (n--) {
+ status |= printf_full(*groups, bb_getgrgid(NULL, 0, *groups), msg);
+ msg = ",";
+ groups++;
+ }
}
- /* Don't free groups */
+ /* we leak groups vector... */
+
#if ENABLE_SELINUX
if (is_selinux_enabled()) {
security_context_t mysid;