aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/pem/pem.h
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/pem/pem.h
parentb3d7294976c58e0e05d0ee44a0e7c9c3b8515e05 (diff)
downloadopenssl-4b618848f9beb8271f24883694e097caa70013c0.tar.gz
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/pem/pem.h')
-rw-r--r--crypto/pem/pem.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/pem/pem.h b/crypto/pem/pem.h
index 7c9b92a7da..6de9c70b68 100644
--- a/crypto/pem/pem.h
+++ b/crypto/pem/pem.h
@@ -213,7 +213,7 @@ typedef struct pem_ctx_st
* IMPLEMENT_PEM_rw(...) or IMPLEMENT_PEM_rw_cb(...)
*/
-#ifdef OPENSSL_NO_FP_API
+#ifdef OPENSSL_NO_STDIO
#define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
#define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
@@ -325,7 +325,7 @@ int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
/* These are the same except they are for the declarations */
-#if defined(OPENSSL_NO_FP_API)
+#if defined(OPENSSL_NO_STDIO)
#define DECLARE_PEM_read_fp(name, type) /**/
#define DECLARE_PEM_write_fp(name, type) /**/