diff options
Diffstat (limited to 'src/pluto/certs.c')
-rw-r--r-- | src/pluto/certs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pluto/certs.c b/src/pluto/certs.c index 42bd10557..fcc9ec577 100644 --- a/src/pluto/certs.c +++ b/src/pluto/certs.c @@ -232,7 +232,7 @@ bool load_cert(char *filename, const char *label, cert_t *cert) { pgpcert_t *pgpcert = malloc_thing(pgpcert_t); *pgpcert = pgpcert_empty; - if (parse_pgp(blob, pgpcert, NULL)) + if (parse_pgp(blob, pgpcert)) { cert->type = CERT_PGP; cert->u.pgp = pgpcert; |