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 0f6c965823
commit f7b36402d6
6 changed files with 59 additions and 17 deletions

View File

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