libbb: fix fallout from last patch to obscure() (my mistake). +143 bytes
authorDenys Vlasenko <vda.linux@googlemail.com>
Tue, 17 Aug 2010 15:21:36 +0000 (17:21 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 17 Aug 2010 15:21:36 +0000 (17:21 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
libbb/obscure.c

index 06f0028..dd8cd31 100644 (file)
@@ -153,7 +153,7 @@ static const char *obscure_msg(const char *old_p, const char *new_p, const struc
        }
 
        size = CONFIG_PASSWORD_MINLEN + 2*CATEGORIES;
-       for (i = 0; i <= LAST_CAT; i <<= 1)
+       for (i = 1; i <= LAST_CAT; i <<= 1)
                if (mixed & i)
                        size -= 2;
        if (length < size)