diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-17 17:21:36 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-08-17 17:21:36 +0200 |
commit | fd27fa83094a85b3e8cb0485467ffa65b572b923 (patch) | |
tree | 0313bf5b2f32813690041825d6e33965be278902 | |
parent | d71c770f05079e65b2d27d28ce22b0f08e71a207 (diff) | |
download | busybox-w32-fd27fa83094a85b3e8cb0485467ffa65b572b923.tar.gz busybox-w32-fd27fa83094a85b3e8cb0485467ffa65b572b923.tar.bz2 busybox-w32-fd27fa83094a85b3e8cb0485467ffa65b572b923.zip |
libbb: fix fallout from last patch to obscure() (my mistake). +143 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libbb/obscure.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/obscure.c b/libbb/obscure.c index 06f00281a..dd8cd319a 100644 --- a/libbb/obscure.c +++ b/libbb/obscure.c | |||
@@ -153,7 +153,7 @@ static const char *obscure_msg(const char *old_p, const char *new_p, const struc | |||
153 | } | 153 | } |
154 | 154 | ||
155 | size = CONFIG_PASSWORD_MINLEN + 2*CATEGORIES; | 155 | size = CONFIG_PASSWORD_MINLEN + 2*CATEGORIES; |
156 | for (i = 0; i <= LAST_CAT; i <<= 1) | 156 | for (i = 1; i <= LAST_CAT; i <<= 1) |
157 | if (mixed & i) | 157 | if (mixed & i) |
158 | size -= 2; | 158 | size -= 2; |
159 | if (length < size) | 159 | if (length < size) |