diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-08-11 08:51:16 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-08-11 08:51:16 +0200 |
commit | 12a699c58decabaa89a83dc53a6f308138c23783 (patch) | |
tree | dee2d429d5f135a0de7927d6e4566d6eaec9495b /src/pluto | |
parent | 87079f58e1b4970c3a7365c4493cb492fc0fca13 (diff) | |
download | strongswan-12a699c58decabaa89a83dc53a6f308138c23783.tar.bz2 strongswan-12a699c58decabaa89a83dc53a6f308138c23783.tar.xz |
fixed 4.3 refactoring error
Diffstat (limited to 'src/pluto')
-rw-r--r-- | src/pluto/keys.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"; } /** |