diff options
Diffstat (limited to 'protocols/Facebook')
-rw-r--r-- | protocols/Facebook/src/http.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Facebook/src/http.cpp b/protocols/Facebook/src/http.cpp index 52fe522779..6f8a079e6d 100644 --- a/protocols/Facebook/src/http.cpp +++ b/protocols/Facebook/src/http.cpp @@ -41,8 +41,8 @@ void AsyncHttpRequest::CalcSig() buf.Append(FB_API_SECRET); char szHash[33]; - BYTE digest[16]; - mir_md5_hash((BYTE*)buf.c_str(), buf.GetLength(), digest); + uint8_t digest[16]; + mir_md5_hash((uint8_t*)buf.c_str(), buf.GetLength(), digest); bin2hex(digest, sizeof(digest), szHash); this << CHAR_PARAM("sig", szHash); |