- vda perfers not to use the banner
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 15 Jun 2007 08:30:33 +0000 (08:30 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 15 Jun 2007 08:30:33 +0000 (08:30 -0000)
libbb/correct_password.c

index d0f68c0cd3bdaf5777973c389006f34046eb785e..7affc97eeefff7d0114c0809011583301a84caf8 100644 (file)
@@ -49,10 +49,9 @@ int correct_password(const struct passwd *pw)
 
        /* fake salt. crypt() can choke otherwise.
         * (bb_banner's first two chars are letters and thus are valid salt) */
-       correct = bb_banner;
+       correct = "aa";
        if (!pw) {
-               /* bb_banner will never match, it contains () which is never
-                * generated in valid encrypted passwords. */
+               /* "aa" will never match */
                goto fake_it;
        }
        correct = pw->pw_passwd;