diff options
Diffstat (limited to 'coreutils/chgrp.c')
-rw-r--r-- | coreutils/chgrp.c | 2 |
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) argv += optind; /* Find the selected group */ - gid = get_ug_id(*argv, my_getgrnam); + gid = get_ug_id(*argv, bb_xgetgrnam); ++argv; /* Ok, ready to do the deed now */ |