diff options
author | Denis Vlasenko | 2007-06-16 14:16:30 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-06-16 14:16:30 +0000 |
commit | 85532fc4d49c599dfd0e5be93de38cb8f7cb551c (patch) | |
tree | 7becc0a016e6f374f617d925e09931267836be73 | |
parent | a7825f269d7fef5370ef7bf4c9acf88a4ec51e71 (diff) | |
download | busybox-85532fc4d49c599dfd0e5be93de38cb8f7cb551c.zip busybox-85532fc4d49c599dfd0e5be93de38cb8f7cb551c.tar.gz |
remove obsolete comment
-rw-r--r-- | libbb/correct_password.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libbb/correct_password.c b/libbb/correct_password.c index 7affc97..f832635 100644 --- a/libbb/correct_password.c +++ b/libbb/correct_password.c @@ -47,8 +47,7 @@ int correct_password(const struct passwd *pw) char buffer[256]; #endif - /* fake salt. crypt() can choke otherwise. - * (bb_banner's first two chars are letters and thus are valid salt) */ + /* fake salt. crypt() can choke otherwise. */ correct = "aa"; if (!pw) { /* "aa" will never match */ |