diff options
Diffstat (limited to 'src/openac/openac.c')
-rwxr-xr-x | src/openac/openac.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/openac/openac.c b/src/openac/openac.c index 799299dbd..b79f4cdc0 100755 --- a/src/openac/openac.c +++ b/src/openac/openac.c @@ -36,6 +36,7 @@ #include <library.h> #include <debug.h> #include <asn1/asn1.h> +#include <asn1/pem.h> #include <asn1/ttodata.h> #include <credentials/certificates/x509.h> #include <credentials/certificates/ac.h> @@ -184,7 +185,7 @@ static private_key_t* private_key_create_from_file(char *path, chunk_t *secret) chunk_t chunk = chunk_empty; private_key_t *key = NULL; - if (!pem_asn1_load_file(path, &secret, &chunk, &pgp)) + if (!pem_asn1_load_file(path, secret, &chunk, &pgp)) { DBG1(" could not load private key file '%s'", path); return NULL; |