summaryrefslogtreecommitdiffstats
path: root/ssl/s2_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssl/s2_lib.c')
-rw-r--r--ssl/s2_lib.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ssl/s2_lib.c b/ssl/s2_lib.c
index c63be3052b..a82ad999f8 100644
--- a/ssl/s2_lib.c
+++ b/ssl/s2_lib.c
@@ -540,7 +540,10 @@ void ssl2_write_error(SSL *s)
if (s->error == 0)
if (s->msg_callback)
- s->msg_callback(1, s->version, 0, buf, 3, s, s->msg_callback_arg); /* ERROR */
+ {
+ /* ERROR */
+ s->msg_callback(1, s->version, 0, buf, 3, s, s->msg_callback_arg);
+ }
}
}