From 12a699c58decabaa89a83dc53a6f308138c23783 Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Tue, 11 Aug 2009 08:51:16 +0200 Subject: [PATCH] fixed 4.3 refactoring error --- src/pluto/keys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pluto/keys.c b/src/pluto/keys.c index ad60c7601..516872e8e 100644 --- a/src/pluto/keys.c +++ b/src/pluto/keys.c @@ -552,7 +552,7 @@ static err_t process_keyfile(private_key_t **key, key_type_t type, int whackfd) } *key = load_private_key(filename, &pass, type); - return key ? NULL : "Private key file -- could not be loaded"; + return *key ? NULL : "Private key file -- could not be loaded"; } /**