diff options
Diffstat (limited to 'openssl/demos/cms/cms_dec.c')
-rw-r--r-- | openssl/demos/cms/cms_dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/demos/cms/cms_dec.c b/openssl/demos/cms/cms_dec.c index 7ddf65326..9fee0a3eb 100644 --- a/openssl/demos/cms/cms_dec.c +++ b/openssl/demos/cms/cms_dec.c @@ -47,7 +47,7 @@ int main(int argc, char **argv) goto err; /* Decrypt S/MIME message */ - if (!CMS_decrypt(cms, rkey, rcert, out, NULL, 0)) + if (!CMS_decrypt(cms, rkey, rcert, NULL, out, 0)) goto err; ret = 0; |