diff options
-rw-r--r-- | protocols/Yahoo/src/libyahoo2/crypt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Yahoo/src/libyahoo2/crypt.cpp b/protocols/Yahoo/src/libyahoo2/crypt.cpp index 29f22e96f9..b200ec02a2 100644 --- a/protocols/Yahoo/src/libyahoo2/crypt.cpp +++ b/protocols/Yahoo/src/libyahoo2/crypt.cpp @@ -133,11 +133,11 @@ char *yahoo_crypt(char *key, char *salt) else
mir_md5_append(&ctx, alt_result, 16);
- /* Add salt for numbers not divisible by 3. */
+ /* Add salt for numbers not dividable by 3. */
if (cnt % 3 != 0)
mir_md5_append(&ctx, (BYTE *)salt, salt_len);
- /* Add key for numbers not divisible by 7. */
+ /* Add key for numbers not dividable by 7. */
if (cnt % 7 != 0)
mir_md5_append(&ctx, (BYTE *)key, key_len);
|