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:
3b061a0
)
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:10:24 +0000
(13:10 +0200)
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
include/openssl/bio.h
patch
|
blob
|
history
diff --git
a/include/openssl/bio.h
b/include/openssl/bio.h
index e224dd94581973a363c374ae1f82f2c9abde343f..7fe88ec4ef78c885ed504befaae40b0122512e7f 100644
(file)
--- a/
include/openssl/bio.h
+++ b/
include/openssl/bio.h
@@
-276,7
+276,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)