diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2008-04-11 19:34:13 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2008-04-11 19:34:13 +0200 |
commit | 529d329ce10946137c096dc0e4e8965e04a1424f (patch) | |
tree | c809d0f64006825481717f30a458ce654e7cc56f /apps | |
parent | CMS compressed data examples. (diff) | |
download | openssl-529d329ce10946137c096dc0e4e8965e04a1424f.tar.xz openssl-529d329ce10946137c096dc0e4e8965e04a1424f.zip |
Make CMS_uncompress() argument order consistent with other functions.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/cms.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/cms.c b/apps/cms.c index b1ffb382ad..e0c4c99485 100644 --- a/apps/cms.c +++ b/apps/cms.c @@ -1028,7 +1028,7 @@ int MAIN(int argc, char **argv) } else if (operation == SMIME_UNCOMPRESS) { - if (!CMS_uncompress(cms, indata, out, flags)) + if (!CMS_uncompress(cms, out, indata, flags)) goto end; } else if (operation == SMIME_DIGEST_VERIFY) |