diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-11-05 08:15:13 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-11-05 08:15:13 +0000 |
commit | 6559100021a271b0ec1948ff69a0b63861b399d5 (patch) | |
tree | 3838a5ba58e985f3011851ffd47aebcd452c5091 /coreutils | |
parent | 391ffa19d1e0813c51d51b29117d119b1dc57c49 (diff) | |
download | busybox-w32-6559100021a271b0ec1948ff69a0b63861b399d5.tar.gz busybox-w32-6559100021a271b0ec1948ff69a0b63861b399d5.tar.bz2 busybox-w32-6559100021a271b0ec1948ff69a0b63861b399d5.zip |
- fix typo in print_user() (tito)
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/id.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/id.c b/coreutils/id.c index 001595f67..3a12011fb 100644 --- a/coreutils/id.c +++ b/coreutils/id.c | |||
@@ -60,7 +60,7 @@ static int print_group(gid_t id, const char *prefix) | |||
60 | return print_common(id, bb_getgrgid, prefix); | 60 | return print_common(id, bb_getgrgid, prefix); |
61 | } | 61 | } |
62 | 62 | ||
63 | static int print_user(gid_t id, const char *prefix) | 63 | static int print_user(uid_t id, const char *prefix) |
64 | { | 64 | { |
65 | return print_common(id, bb_getpwuid, prefix); | 65 | return print_common(id, bb_getpwuid, prefix); |
66 | } | 66 | } |