summaryrefslogtreecommitdiff
path: root/test.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-07-11 20:03:53 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-07-11 20:03:53 +0000
commit09326fa9f564c09ebecff7c56d0e33555dec65b6 (patch)
tree348a396037e257b26a0103d1a234ec23245cd245 /test.cpp
parentca1d2138e7f87961f468b34059068af257cd5bc6 (diff)
downloadcryptopp-09326fa9f564c09ebecff7c56d0e33555dec65b6.tar.gz
fix for Unix
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@97 57ff6487-cd31-0410-9ec3-f628ee90f5f0
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 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());