summaryrefslogtreecommitdiffstats
path: root/apps/cms.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-04-11 17:34:13 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-04-11 17:34:13 +0000
commit529d329ce10946137c096dc0e4e8965e04a1424f (patch)
treec809d0f64006825481717f30a458ce654e7cc56f /apps/cms.c
parent47a6d388c71e5021a172520ef2fc04ffa9f706e7 (diff)
Make CMS_uncompress() argument order consistent with other functions.
Diffstat (limited to 'apps/cms.c')
-rw-r--r--apps/cms.c2
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)