From 5850046cf4bf3146c7da097f9ff3dec01459b640 Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Sun, 22 Feb 2009 07:51:26 +0000 Subject: moved LogErrno to AnytunErrno --- src/cryptinit.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cryptinit.hpp') diff --git a/src/cryptinit.hpp b/src/cryptinit.hpp index 2caa4cb..4460de0 100644 --- a/src/cryptinit.hpp +++ b/src/cryptinit.hpp @@ -92,14 +92,14 @@ bool initLibGCrypt() gcry_error_t err = gcry_control (GCRYCTL_DISABLE_SECMEM, 0); if( err ) { - std::cout << "initLibGCrypt: Failed to disable secure memory: " << LogGpgError(err) << std::endl; + std::cout << "initLibGCrypt: Failed to disable secure memory: " << AnytunGpgError(err) << std::endl; return false; } // Tell Libgcrypt that initialization has completed. err = gcry_control(GCRYCTL_INITIALIZATION_FINISHED); if( err ) { - std::cout << "initLibGCrypt: Failed to finish initialization: " << LogGpgError(err) << std::endl; + std::cout << "initLibGCrypt: Failed to finish initialization: " << AnytunGpgError(err) << std::endl; return false; } -- cgit v1.2.3