commit | a5db50d005637faba968b4173f2e81f07ebd7469 | [log] [tgz] |
---|---|---|
author | Dr. Stephen Henson <steve@openssl.org> | Fri Apr 11 23:23:18 2008 +0000 |
committer | Dr. Stephen Henson <steve@openssl.org> | Fri Apr 11 23:23:18 2008 +0000 |
tree | 6f302ce7f0b007c429d12a4818c0bf87f6292bf4 | |
parent | f3eba36c4cc50bbf04e1c0098619ad7467efd9e4 [diff] [blame] |
Revert argument swap change... oops CMS_uncompress() was consistent...
diff --git a/apps/cms.c b/apps/cms.c index e0c4c99..b1ffb38 100644 --- a/apps/cms.c +++ b/apps/cms.c
@@ -1028,7 +1028,7 @@ } else if (operation == SMIME_UNCOMPRESS) { - if (!CMS_uncompress(cms, out, indata, flags)) + if (!CMS_uncompress(cms, indata, out, flags)) goto end; } else if (operation == SMIME_DIGEST_VERIFY)