mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 19:37:02 +00:00
[8633] Fix possible build error at ASSERT redefine.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
85d8aaccd8
commit
fd48113941
2 changed files with 2 additions and 2 deletions
|
|
@ -46,7 +46,7 @@ void HmacHash::Finalize()
|
|||
{
|
||||
uint32 length = 0;
|
||||
HMAC_Final(&m_ctx, (uint8*)m_digest, &length);
|
||||
ASSERT(length == SHA_DIGEST_LENGTH)
|
||||
ASSERT(length == SHA_DIGEST_LENGTH);
|
||||
}
|
||||
|
||||
uint8 *HmacHash::ComputeHash(BigNumber *bn)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "8632"
|
||||
#define REVISION_NR "8633"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue