diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-12 04:06:18 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2015-10-12 04:06:18 +0200 |
commit | 5de450237cf7ec63faa6ab4e019f66e053324c49 (patch) | |
tree | 1bdb7e8662c7ca4feb7daacbb56872130053d303 | |
parent | 57aeb62f837f40deafd8896d0ae49e5e51a8d795 (diff) | |
download | busybox-w32-5de450237cf7ec63faa6ab4e019f66e053324c49.tar.gz busybox-w32-5de450237cf7ec63faa6ab4e019f66e053324c49.tar.bz2 busybox-w32-5de450237cf7ec63faa6ab4e019f66e053324c49.zip |
libpwdgrp: do not require that /etc/passwd entries have nonempty home and shell
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libpwdgrp/pwd_grp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpwdgrp/pwd_grp.c b/libpwdgrp/pwd_grp.c index 3886facf0..139b93007 100644 --- a/libpwdgrp/pwd_grp.c +++ b/libpwdgrp/pwd_grp.c | |||
@@ -58,7 +58,7 @@ struct passdb { | |||
58 | * I = uid,gid, l = long maybe empty, m = members, | 58 | * I = uid,gid, l = long maybe empty, m = members, |
59 | * r = reserved | 59 | * r = reserved |
60 | */ | 60 | */ |
61 | #define PW_DEF "SsIIsSS" | 61 | #define PW_DEF "SsIIsss" |
62 | #define GR_DEF "SsIm" | 62 | #define GR_DEF "SsIm" |
63 | #define SP_DEF "Ssllllllr" | 63 | #define SP_DEF "Ssllllllr" |
64 | 64 | ||