aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libbb/correct_password.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libbb/correct_password.c b/libbb/correct_password.c
index 7affc97ee..f832635e6 100644
--- a/libbb/correct_password.c
+++ b/libbb/correct_password.c
@@ -47,8 +47,7 @@ int correct_password(const struct passwd *pw)
47 char buffer[256]; 47 char buffer[256];
48#endif 48#endif
49 49
50 /* fake salt. crypt() can choke otherwise. 50 /* fake salt. crypt() can choke otherwise. */
51 * (bb_banner's first two chars are letters and thus are valid salt) */
52 correct = "aa"; 51 correct = "aa";
53 if (!pw) { 52 if (!pw) {
54 /* "aa" will never match */ 53 /* "aa" will never match */