From 0bc5a2302341a5a1bdbcbfc5be524baa372bea6c Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Wed, 29 Aug 2007 10:36:08 +0000 Subject: [PATCH] renamed integrity check to integrity test --- src/charon/daemon.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/charon/daemon.c b/src/charon/daemon.c index ede3048e3..a03a99272 100644 --- a/src/charon/daemon.c +++ b/src/charon/daemon.c @@ -295,15 +295,15 @@ static bool initialize(private_daemon_t *this, bool syslog, level_t levels[]) DBG1(DBG_DMN, "starting charon (strongSwan Version %s)", VERSION); #ifdef INTEGRITY_TEST - DBG1(DBG_DMN, "integrity check of libstrongswan code"); + DBG1(DBG_DMN, "integrity test of libstrongswan code"); if (!fips_verify_hmac_signature(hmac_key, hmac_signature)) { - DBG1(DBG_DMN, " integrity check failed"); + DBG1(DBG_DMN, " integrity test passed"); return FALSE; } else { - DBG1(DBG_DMN, " integrity check succeeded"); + DBG1(DBG_DMN, " integrity test passed"); } #endif /* INTEGRITY_TEST */