From 375508664576dce8b397da69f4345a65cd0a63e9 Mon Sep 17 00:00:00 2001 From: nekral-guest Date: Sun, 27 Jan 2008 14:31:23 +0000 Subject: [PATCH] Fix comment. find_new_fid is no more called is the user specified a group ID. --- src/useradd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/useradd.c b/src/useradd.c index 9d7c3eda..45a07d57 100644 --- a/src/useradd.c +++ b/src/useradd.c @@ -171,6 +171,7 @@ static long scale_age (long); static void new_spent (struct spwd *); static void grp_update (void); static void find_new_uid (void); +static void find_new_gid (void); static void process_flags (int argc, char **argv); static void close_files (void); @@ -885,9 +886,8 @@ static void find_new_gid (void) user_gid = gid_min; /* - * Search the entire group file, either looking for this - * GID (if the user specified one with -g) or looking for the - * largest unused value. + * Search the entire group file, + * looking for the largest unused value. */ setgrent (); while ((grp = getgrent ())) {