aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDr. Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>2016-06-20 13:39:28 -0400
committerRich Salz <rsalz@openssl.org>2016-06-20 15:08:23 -0400
commit54f24e3ed411b19a3647a0aa114b0ea20421bbe7 (patch)
treed0e841d2559d4c12e853b718e5b0bace42708735 /include
parent14d3c0dd2c31b9fd1f92d608524dd650f5ec5a7e (diff)
downloadopenssl-54f24e3ed411b19a3647a0aa114b0ea20421bbe7.tar.gz
RT3925: Remove trailing semi from macro
Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/bio.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/openssl/bio.h b/include/openssl/bio.h
index 4b6179f818..503fbcd5a8 100644
--- a/include/openssl/bio.h
+++ b/include/openssl/bio.h
@@ -442,11 +442,11 @@ int BIO_read_filename(BIO *b, const char *name);
# define BIO_get_ssl(b,sslp) BIO_ctrl(b,BIO_C_GET_SSL,0,(char *)sslp)
# define BIO_set_ssl_mode(b,client) BIO_ctrl(b,BIO_C_SSL_MODE,client,NULL)
# define BIO_set_ssl_renegotiate_bytes(b,num) \
- BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_BYTES,num,NULL);
+ BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_BYTES,num,NULL)
# define BIO_get_num_renegotiates(b) \
- BIO_ctrl(b,BIO_C_GET_SSL_NUM_RENEGOTIATES,0,NULL);
+ BIO_ctrl(b,BIO_C_GET_SSL_NUM_RENEGOTIATES,0,NULL)
# define BIO_set_ssl_renegotiate_timeout(b,seconds) \
- BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT,seconds,NULL);
+ BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT,seconds,NULL)
/* defined in evp.h */
/* #define BIO_set_md(b,md) BIO_ctrl(b,BIO_C_SET_MD,1,(char *)md) */