From 8cd6a9256d78953d6e99097fb4508a077e8e2ebe Mon Sep 17 00:00:00 2001 From: weidai Date: Fri, 11 Jul 2003 20:03:53 +0000 Subject: [PATCH] fix for Unix --- test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.cpp b/test.cpp index de7fdaf0..063e6dd6 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 mac; - if (stricmp(hexKey, "selftest") == 0) + if (strcmp(hexKey, "selftest") == 0) { cerr << "Computing HMAC/SHA1 value for self test.\n"; mac.reset(NewIntegrityCheckingMAC());