Tweaks for comments due to indent's inability to handle them

Reviewed-by: Tim Hudson <tjh@openssl.org>
This commit is contained in:
Matt Caswell
2015-01-21 21:22:49 +00:00
parent f3b6ee30f4
commit 335d4d06a7
6 changed files with 59 additions and 17 deletions

View File

@@ -537,7 +537,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);
}
}
}