summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Laurie <ben@links.org>2013-08-21 05:21:57 +0200
committerBen Laurie <ben@links.org>2013-08-21 05:21:57 +0200
commitd5605699a15d870457f96b3e1795135228547324 (patch)
tree807bb4ea44b88b3c0bd4dc992007d6c1e4d74359
parentFix compile errors. (diff)
downloadopenssl-d5605699a15d870457f96b3e1795135228547324.tar.xz
openssl-d5605699a15d870457f96b3e1795135228547324.zip
Correctly test for no-ec.
-rw-r--r--test/cms-test.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cms-test.pl b/test/cms-test.pl
index 5e553c84c9..006733a6be 100644
--- a/test/cms-test.pl
+++ b/test/cms-test.pl
@@ -90,7 +90,7 @@ if ($? == 0)
{
$no_ec = 1;
}
-elsif ($? == 1)
+elsif ($? == 256)
{
$no_ec = 0;
}