diff options
Diffstat (limited to 'apps/rsautl.c')
-rw-r--r-- | apps/rsautl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/rsautl.c b/apps/rsautl.c index 9b02e6782e..36957e5b84 100644 --- a/apps/rsautl.c +++ b/apps/rsautl.c @@ -169,12 +169,12 @@ int MAIN(int argc, char **argv) switch(key_type) { case KEY_PRIVKEY: - pkey = load_key(bio_err, keyfile, keyform, + pkey = load_key(bio_err, keyfile, keyform, 0, NULL, e, "Private Key"); break; case KEY_PUBKEY: - pkey = load_pubkey(bio_err, keyfile, keyform, + pkey = load_pubkey(bio_err, keyfile, keyform, 0, NULL, e, "Public Key"); break; |