[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Richard Levitte
levitte at openssl.org
Tue Jun 16 11:14:25 UTC 2015
The branch OpenSSL_1_0_2-stable has been updated
via 4f0812cc28c5cd4fb2c396b1825af82abebc6e56 (commit)
via 3bf9adaa2ba3456b90c01ac719edc566f8bb3037 (commit)
from 54ae378c9ea0a68fbdada833f6e2dd857bcecd65 (commit)
- Log -----------------------------------------------------------------
commit 4f0812cc28c5cd4fb2c396b1825af82abebc6e56
Author: Richard Levitte <levitte at openssl.org>
Date: Mon Jun 15 09:59:25 2015 +0200
Make preprocessor error into real preprocessor error
Reviewed-by: Kurt Roeckx <kurt at openssl.org>
(cherry picked from commit b4f0d1a4a89b964dba80036a6348ca0a1913c526)
commit 3bf9adaa2ba3456b90c01ac719edc566f8bb3037
Author: Richard Levitte <levitte at openssl.org>
Date: Sat Jun 13 13:13:55 2015 +0200
Remove one extraneous parenthesis
Reviewed-by: Kurt Roeckx <kurt at openssl.org>
(cherry picked from commit 30cf91784bfde82622f79d87d17d20ce73329532)
-----------------------------------------------------------------------
Summary of changes:
crypto/bio/bio.h | 2 +-
crypto/opensslconf.h.in | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/crypto/bio/bio.h b/crypto/bio/bio.h
index 7878fb1..f78796b 100644
--- a/crypto/bio/bio.h
+++ b/crypto/bio/bio.h
@@ -291,7 +291,7 @@ void BIO_clear_flags(BIO *b, int flags);
* BIO_CB_RETURN flag indicates if it is after the call
*/
# define BIO_CB_RETURN 0x80
-# define BIO_CB_return(a) ((a)|BIO_CB_RETURN))
+# define BIO_CB_return(a) ((a)|BIO_CB_RETURN)
# define BIO_cb_pre(a) (!((a)&BIO_CB_RETURN))
# define BIO_cb_post(a) ((a)&BIO_CB_RETURN)
diff --git a/crypto/opensslconf.h.in b/crypto/opensslconf.h.in
index 97e3745..814309b 100644
--- a/crypto/opensslconf.h.in
+++ b/crypto/opensslconf.h.in
@@ -101,7 +101,7 @@
#endif
#if defined(DES_RISC1) && defined(DES_RISC2)
-YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!!
+#error YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!!
#endif
/* Unroll the inner loop, this sometimes helps, sometimes hinders.
More information about the openssl-commits
mailing list