diff options
author | Russ Dill <Russ.Dill@asu.edu> | 2003-12-18 22:40:58 +0000 |
---|---|---|
committer | Russ Dill <Russ.Dill@asu.edu> | 2003-12-18 22:40:58 +0000 |
commit | f796700cf010d7ff2615c59bc364bbbef14153a4 (patch) | |
tree | 59da8113d1decbb3ae5731d06487e56c426afb0f /libpwdgrp/fgetgrent.c | |
parent | 4e864a36b611f56c6b347be1dace4e5e805a3eb8 (diff) | |
download | busybox-f796700cf010d7ff2615c59bc364bbbef14153a4.tar.gz |
rename __getgrent so that it doesn't conflict with some libc's
Diffstat (limited to 'libpwdgrp/fgetgrent.c')
-rw-r--r-- | libpwdgrp/fgetgrent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpwdgrp/fgetgrent.c b/libpwdgrp/fgetgrent.c index 1492a1a95..da4ca053f 100644 --- a/libpwdgrp/fgetgrent.c +++ b/libpwdgrp/fgetgrent.c @@ -31,5 +31,5 @@ struct group *fgetgrent(FILE * file) return NULL; } - return __getgrent(fileno(file)); + return bb_getgrent(fileno(file)); } |