aboutsummaryrefslogtreecommitdiff
path: root/crypto/openssl/ssl/d1_msg.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssl/ssl/d1_msg.c')
-rw-r--r--crypto/openssl/ssl/d1_msg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/openssl/ssl/d1_msg.c b/crypto/openssl/ssl/d1_msg.c
index 6613f0f4c87a..50676a1cda38 100644
--- a/crypto/openssl/ssl/d1_msg.c
+++ b/crypto/openssl/ssl/d1_msg.c
@@ -11,7 +11,7 @@
#include "internal/ssl_unwrap.h"
int dtls1_write_app_data_bytes(SSL *s, uint8_t type, const void *buf_,
- size_t len, size_t *written)
+ size_t len, size_t *written)
{
int i;
SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
@@ -40,7 +40,7 @@ int dtls1_write_app_data_bytes(SSL *s, uint8_t type, const void *buf_,
int dtls1_dispatch_alert(SSL *ssl)
{
int i, j;
- void (*cb) (const SSL *ssl, int type, int val) = NULL;
+ void (*cb)(const SSL *ssl, int type, int val) = NULL;
unsigned char buf[DTLS1_AL_HEADER_LENGTH];
unsigned char *ptr = &buf[0];
size_t written;
@@ -64,7 +64,7 @@ int dtls1_dispatch_alert(SSL *ssl)
if (s->msg_callback)
s->msg_callback(1, s->version, SSL3_RT_ALERT, s->s3.send_alert,
- 2, ssl, s->msg_callback_arg);
+ 2, ssl, s->msg_callback_arg);
if (s->info_callback != NULL)
cb = s->info_callback;