diff options
author | René Schümann <white06tiger@gmail.com> | 2015-02-17 15:09:05 +0000 |
---|---|---|
committer | René Schümann <white06tiger@gmail.com> | 2015-02-17 15:09:05 +0000 |
commit | 876c06036bfc79ec02b920417aadbe91e808d9b4 (patch) | |
tree | b50dc5687ed7afa63206a4a4907d8c60b2b5ec5a /protocols/Yahoo/src | |
parent | a8e10d00edb86d5ac99dc4c4eef87deae525beaa (diff) |
Yahoo: fixed comment spelling in libyahoo2
git-svn-id: http://svn.miranda-ng.org/main/trunk@12162 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Yahoo/src')
-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);
|