diff options
author | Mike DePaulo <mikedep333@gmail.com> | 2015-07-10 08:56:32 -0400 |
---|---|---|
committer | Mike DePaulo <mikedep333@gmail.com> | 2015-07-26 11:34:07 -0400 |
commit | 9ece505c5ca92218e41adedfa6d8c47574bd9271 (patch) | |
tree | fbb27f113769b94dafa26ab43a5843c7e7454fb6 /openssl/crypto/bio/bio.h | |
parent | 6d650329125473a3b773f03f2fb704a094d92b55 (diff) | |
download | vcxsrv-9ece505c5ca92218e41adedfa6d8c47574bd9271.tar.gz vcxsrv-9ece505c5ca92218e41adedfa6d8c47574bd9271.tar.bz2 vcxsrv-9ece505c5ca92218e41adedfa6d8c47574bd9271.zip |
Update openssl: 1.0.2c -> 1.0.2d
Diffstat (limited to 'openssl/crypto/bio/bio.h')
-rw-r--r-- | openssl/crypto/bio/bio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/crypto/bio/bio.h b/openssl/crypto/bio/bio.h index 7878fb198..f78796b06 100644 --- a/openssl/crypto/bio/bio.h +++ b/openssl/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) |