projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9f4108
)
Remove one extraneous parenthesis
author
Richard Levitte
<levitte@openssl.org>
Sat, 13 Jun 2015 11:13:55 +0000
(13:13 +0200)
committer
Richard Levitte
<levitte@openssl.org>
Tue, 16 Jun 2015 11:14:11 +0000
(13:14 +0200)
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
(cherry picked from commit
30cf91784bfde82622f79d87d17d20ce73329532
)
crypto/bio/bio.h
patch
|
blob
|
history
diff --git
a/crypto/bio/bio.h
b/crypto/bio/bio.h
index 73e8c78beaaf1be74e55d22198992c1d364ca064..8f79c292738a49dc254a403ef7785afa5498cfdd 100644
(file)
--- a/
crypto/bio/bio.h
+++ b/
crypto/bio/bio.h
@@
-263,7
+263,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)