From a3f0aa525b4c29654bf4721ffabc687bb907ac9f Mon Sep 17 00:00:00 2001 From: toddouska Date: Wed, 14 Dec 2011 17:29:49 -0800 Subject: [PATCH] fix hamc test calling ripemd --- tests/hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/hash.c b/tests/hash.c index 08ac57eb7..164caf198 100644 --- a/tests/hash.c +++ b/tests/hash.c @@ -95,7 +95,7 @@ int HashTest(void) #endif #ifndef NO_HMAC - if ( (ret = ripemd_test()) ) { + if ( (ret = hmac_test()) ) { printf( " HMAC test failed!\n"); return ret; } else