summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.cpp b/test.cpp
index de7fdaf..063e6dd 100644
--- a/test.cpp
+++ b/test.cpp
@@ -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());