summaryrefslogtreecommitdiffstats
path: root/pw/pw_user.c
diff options
context:
space:
mode:
Diffstat (limited to 'pw/pw_user.c')
-rw-r--r--pw/pw_user.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/pw/pw_user.c b/pw/pw_user.c
index c3b2751..ea3cb3d 100644
--- a/pw/pw_user.c
+++ b/pw/pw_user.c
@@ -158,14 +158,10 @@ pw_user(int mode, char *name, long id, struct cargs * args)
* With M_NEXT, we only need to return the
* next uid to stdout
*/
- if (mode == M_NEXT)
- {
- uid_t next = pw_uidpolicy(cnf, id);
- if (getarg(args, 'q'))
- return next;
- printf("%u:", next);
+ if (mode == M_NEXT) {
+ printf("%u:", pw_uidpolicy(cnf, id));
pw_group(mode, name, -1, args);
- return EXIT_SUCCESS;
+ return (EXIT_SUCCESS);
}
/*