fix for Unix

import/raw
weidai 2003-07-11 20:03:53 +00:00
parent 281bf1d9c4
commit ddacf429b6
1 changed files with 1 additions and 1 deletions

View File

@ -428,7 +428,7 @@ void DigestFile(const char *filename)
void HmacFile(const char *hexKey, const char *file)
{
member_ptr<MessageAuthenticationCode> mac;
if (stricmp(hexKey, "selftest") == 0)
if (strcmp(hexKey, "selftest") == 0)
{
cerr << "Computing HMAC/SHA1 value for self test.\n";
mac.reset(NewIntegrityCheckingMAC());