summaryrefslogtreecommitdiffstats
path: root/crypto/ec
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2015-01-14 15:57:28 -0500
committerRich Salz <rsalz@openssl.org>2015-01-14 15:57:28 -0500
commit4b618848f9beb8271f24883694e097caa70013c0 (patch)
tree83a17961f721935b211a19bddf8ea02ab5760fb4 /crypto/ec
parentb3d7294976c58e0e05d0ee44a0e7c9c3b8515e05 (diff)
Cleanup OPENSSL_NO_xxx, part 1master-pre-reformat
OPENSSL_NO_RIPEMD160, OPENSSL_NO_RIPEMD merged into OPENSSL_NO_RMD160 OPENSSL_NO_FP_API merged into OPENSSL_NO_STDIO Two typo's on #endif comments fixed: OPENSSL_NO_ECB fixed to OPENSSL_NO_OCB OPENSSL_NO_HW_SureWare fixed to OPENSSL_NO_HW_SUREWARE Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/ec')
-rw-r--r--crypto/ec/ec.h4
-rw-r--r--crypto/ec/eck_prn.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/crypto/ec/ec.h b/crypto/ec/ec.h
index 477e476d08..5e89eea191 100644
--- a/crypto/ec/ec.h
+++ b/crypto/ec/ec.h
@@ -706,7 +706,7 @@ int i2d_ECPKParameters(const EC_GROUP *, unsigned char **out);
#ifndef OPENSSL_NO_BIO
int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off);
#endif
-#ifndef OPENSSL_NO_FP_API
+#ifndef OPENSSL_NO_STDIO
int ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off);
#endif
@@ -941,7 +941,7 @@ int ECParameters_print(BIO *bp, const EC_KEY *key);
int EC_KEY_print(BIO *bp, const EC_KEY *key, int off);
#endif
-#ifndef OPENSSL_NO_FP_API
+#ifndef OPENSSL_NO_STDIO
/** Prints out the ec parameters on human readable form.
* \param fp file descriptor to which the information is printed
* \param key EC_KEY object
diff --git a/crypto/ec/eck_prn.c b/crypto/ec/eck_prn.c
index 39ce97862d..f2c327d876 100644
--- a/crypto/ec/eck_prn.c
+++ b/crypto/ec/eck_prn.c
@@ -67,7 +67,7 @@
#include <openssl/ec.h>
#include <openssl/bn.h>
-#ifndef OPENSSL_NO_FP_API
+#ifndef OPENSSL_NO_STDIO
int ECPKParameters_print_fp(FILE *fp, const EC_GROUP *x, int off)
{
BIO *b;