diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/ec/eck_prn.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/ec/eck_prn.c b/src/lib/libcrypto/ec/eck_prn.c index 7d3e175ae7..06de8f3959 100644 --- a/src/lib/libcrypto/ec/eck_prn.c +++ b/src/lib/libcrypto/ec/eck_prn.c | |||
@@ -207,7 +207,7 @@ int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off) | |||
207 | reason = ERR_R_MALLOC_FAILURE; | 207 | reason = ERR_R_MALLOC_FAILURE; |
208 | goto err; | 208 | goto err; |
209 | } | 209 | } |
210 | 210 | #ifndef OPENSSL_NO_EC2M | |
211 | if (is_char_two) | 211 | if (is_char_two) |
212 | { | 212 | { |
213 | if (!EC_GROUP_get_curve_GF2m(x, p, a, b, ctx)) | 213 | if (!EC_GROUP_get_curve_GF2m(x, p, a, b, ctx)) |
@@ -217,6 +217,7 @@ int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off) | |||
217 | } | 217 | } |
218 | } | 218 | } |
219 | else /* prime field */ | 219 | else /* prime field */ |
220 | #endif | ||
220 | { | 221 | { |
221 | if (!EC_GROUP_get_curve_GFp(x, p, a, b, ctx)) | 222 | if (!EC_GROUP_get_curve_GFp(x, p, a, b, ctx)) |
222 | { | 223 | { |