commit | 5bf59c104af94e918ce879352f27b40099bf51be | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Sat Apr 25 13:26:10 2009 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Sat Apr 25 13:26:10 2009 +0000 |
tree | b76254e73f46e063f9ee0845da5224cf1a3bcfd6 | |
parent | f6b4685691ebe00f28e4f9148a1a255e87b8d312 [diff] |
shrink if FEATURE_SHADOWPASSWDS is off
diff --git a/libbb/update_passwd.c b/libbb/update_passwd.c index 35b89a5..aa1e2ed 100644 --- a/libbb/update_passwd.c +++ b/libbb/update_passwd.c
@@ -100,7 +100,7 @@ name = xasprintf("%s:", name); user_len = strlen(name); - if (strstr(filename, "shadow")) + if (ENABLE_FEATURE_SHADOWPASSWDS && strstr(filename, "shadow")) old_fp = fopen(filename, "r+"); else old_fp = fopen_or_warn(filename, "r+");