summaryrefslogtreecommitdiff
path: root/test.cpp
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2003-07-11 20:03:53 +0000
committerweidai <weidai11@users.noreply.github.com>2003-07-11 20:03:53 +0000
commit8cd6a9256d78953d6e99097fb4508a077e8e2ebe (patch)
tree348a396037e257b26a0103d1a234ec23245cd245 /test.cpp
parente769c2eeacfebf66c38e31bca8f2ea8e9ddb2b2a (diff)
downloadcryptopp-git-8cd6a9256d78953d6e99097fb4508a077e8e2ebe.tar.gz
fix for Unix
Diffstat (limited to 'test.cpp')
-rw-r--r--test.cpp2
1 files changed, 1 insertions, 1 deletions
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<MessageAuthenticationCode> mac;
- if (stricmp(hexKey, "selftest") == 0)
+ if (strcmp(hexKey, "selftest") == 0)
{
cerr << "Computing HMAC/SHA1 value for self test.\n";
mac.reset(NewIntegrityCheckingMAC());