From 88e38ca2fba03379ef386aff287d871c062a2ae7 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 16 Aug 2004 09:07:39 +0000 Subject: [PATCH] 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 --- loginutils/adduser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. -- 2.7.4