From: Eric Andersen Date: Mon, 16 Aug 2004 09:07:39 +0000 (-0000) Subject: Bertrand Baudet writes: X-Git-Tag: 1_00_rc3~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=88e38ca2fba03379ef386aff287d871c062a2ae7;p=platform%2Fupstream%2Fbusybox.git Bertrand Baudet writes: Looks like the -D and -H options of the adduser applet aren't handle properly in BusyBox. This patch fixes the masks definition for those options according to there position in the optstring. Patch against RC2 but should also apply cleanly against CVS. Bertrand --- diff --git a/loginutils/adduser.c b/loginutils/adduser.c index 3e10fd3..7687888 100644 --- a/loginutils/adduser.c +++ b/loginutils/adduser.c @@ -238,8 +238,8 @@ void if_i_am_not_root(void) } } -#define SETPASS 1 -#define MAKEHOME 4 +#define SETPASS (1 << 4) +#define MAKEHOME (1 << 6) /* * adduser will take a login_name as its first parameter.