aboutsummaryrefslogtreecommitdiff
path: root/coreutils/chgrp.c
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-20 21:06:17 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-09-20 21:06:17 +0000
commit5911005b856d3916e8d6439a84eeb57df7274142 (patch)
treee55887632741516332495c4fe7cf4169e71984c3 /coreutils/chgrp.c
parent15a584c6511a9a18b70cc7990e37e3ec4ff0c01b (diff)
downloadbusybox-w32-5911005b856d3916e8d6439a84eeb57df7274142.tar.gz
busybox-w32-5911005b856d3916e8d6439a84eeb57df7274142.tar.bz2
busybox-w32-5911005b856d3916e8d6439a84eeb57df7274142.zip
- rename libbb's password helpers as suggested in libbb.h
my_getpwnam -> bb_xgetpwnam /* dies on error */ my_getgrnam -> bb_xgetgrnam /* dies on error */ my_getgrgid -> bb_getgrgid my_getpwuid -> bb_getpwuid my_getug -> bb_getug git-svn-id: svn://busybox.net/trunk/busybox@11515 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/chgrp.c')
-rw-r--r--coreutils/chgrp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/chgrp.c b/coreutils/chgrp.c
index 8cfb54241..70ac672c2 100644
--- a/coreutils/chgrp.c
+++ b/coreutils/chgrp.c
@@ -58,7 +58,7 @@ int chgrp_main(int argc, char **argv)
58 argv += optind; 58 argv += optind;
59 59
60 /* Find the selected group */ 60 /* Find the selected group */
61 gid = get_ug_id(*argv, my_getgrnam); 61 gid = get_ug_id(*argv, bb_xgetgrnam);
62 ++argv; 62 ++argv;
63 63
64 /* Ok, ready to do the deed now */ 64 /* Ok, ready to do the deed now */