diff options
author | Denis Vlasenko | 2009-04-14 09:58:11 +0000 |
---|---|---|
committer | Denis Vlasenko | 2009-04-14 09:58:11 +0000 |
commit | 7223424815b2ce563553ff35342e84b4a14d8d8b (patch) | |
tree | b3be60a6aaae61bbd8afd6e4f48c6e03139d32da /loginutils | |
parent | 7f9593753a194c3d3db79f803f68d2ebaf98cd12 (diff) | |
download | busybox-7223424815b2ce563553ff35342e84b4a14d8d8b.zip busybox-7223424815b2ce563553ff35342e84b4a14d8d8b.tar.gz |
pointless whitespace/comment fixes, no code changes
Diffstat (limited to 'loginutils')
-rw-r--r-- | loginutils/adduser.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/loginutils/adduser.c b/loginutils/adduser.c index d0a870c..8a5d902 100644 --- a/loginutils/adduser.c +++ b/loginutils/adduser.c @@ -127,8 +127,8 @@ int adduser_main(int argc UNUSED_PARAM, char **argv) free(p); #if ENABLE_FEATURE_SHADOWPASSWDS - p = xasprintf("!:%u:0:99999:7:::", (unsigned)(time(NULL) / 86400)); /* sp->sp_lstchg */ - /* Ignore errors: if file is missing we suppose admin doesn't want it */ + p = xasprintf("!:%u:0:99999:7:::", (unsigned)(time(NULL) / 86400)); /* sp->sp_lstchg */ + /* ignore errors: if file is missing we suppose admin doesn't want it */ update_passwd(bb_path_shadow_file, pw.pw_name, p, NULL); if (ENABLE_FEATURE_CLEAN_UP) free(p); @@ -140,7 +140,7 @@ int adduser_main(int argc UNUSED_PARAM, char **argv) if (!usegroup) addgroup_wrapper(&pw); - /* Clear the umask for this process so it doesn't + /* clear the umask for this process so it doesn't * screw up the permissions on the mkdir and chown. */ umask(0); if (!(option_mask32 & OPT_DONT_MAKE_HOME)) { |