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

Conflicts:
	ssl/s3_srvr.c

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

View File

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