fixed 4.3 refactoring error

This commit is contained in:
Andreas Steffen
2009-08-11 08:51:16 +02:00
parent 87079f58e1
commit 12a699c58d
+1 -1
View File
@@ -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";
}
/**