diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-21 22:29:26 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-21 22:29:26 +0000 |
commit | 845db2acf3cf7e87c20cee01dc228de6fad593ed (patch) | |
tree | 97afadca9ba65549891524775597f223bd45a6dd /loginutils/chpasswd.c | |
parent | b71c668c577f7780362f7ea632895c11e3760d66 (diff) | |
download | busybox-w32-845db2acf3cf7e87c20cee01dc228de6fad593ed.tar.gz busybox-w32-845db2acf3cf7e87c20cee01dc228de6fad593ed.tar.bz2 busybox-w32-845db2acf3cf7e87c20cee01dc228de6fad593ed.zip |
chpasswd: fix indentation
Diffstat (limited to '')
-rw-r--r-- | loginutils/chpasswd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loginutils/chpasswd.c b/loginutils/chpasswd.c index 1f823179f..f91ebdc68 100644 --- a/loginutils/chpasswd.c +++ b/loginutils/chpasswd.c | |||
@@ -56,7 +56,7 @@ int chpasswd_main(int argc, char **argv) | |||
56 | /* This is rather complex: if user is not found in /etc/shadow, | 56 | /* This is rather complex: if user is not found in /etc/shadow, |
57 | * we try to find & change his passwd in /etc/passwd */ | 57 | * we try to find & change his passwd in /etc/passwd */ |
58 | #if ENABLE_FEATURE_SHADOWPASSWDS | 58 | #if ENABLE_FEATURE_SHADOWPASSWDS |
59 | rc = update_passwd(bb_path_shadow_file, name, pass); | 59 | rc = update_passwd(bb_path_shadow_file, name, pass); |
60 | if (rc == 0) /* no lines updated, no errors detected */ | 60 | if (rc == 0) /* no lines updated, no errors detected */ |
61 | #endif | 61 | #endif |
62 | rc = update_passwd(bb_path_passwd_file, name, pass); | 62 | rc = update_passwd(bb_path_passwd_file, name, pass); |