indent has problems with comments that are on the right hand side of a line.
Sometimes it fails to format them very well, and sometimes it corrupts them! This commit moves some particularly problematic ones. Conflicts: crypto/bn/bn.h crypto/ec/ec_lcl.h crypto/rsa/rsa.h demos/engines/ibmca/hw_ibmca.c ssl/ssl.h ssl/ssl3.h Reviewed-by: Tim Hudson <tjh@openssl.org>
This commit is contained in:
@@ -481,10 +481,15 @@ long dtls1_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok)
|
||||
again:
|
||||
i = dtls1_get_message_fragment(s, st1, stn, max, ok);
|
||||
if ( i == DTLS1_HM_BAD_FRAGMENT ||
|
||||
i == DTLS1_HM_FRAGMENT_RETRY) /* bad fragment received */
|
||||
i == DTLS1_HM_FRAGMENT_RETRY)
|
||||
{
|
||||
/* bad fragment received */
|
||||
goto again;
|
||||
}
|
||||
else if ( i <= 0 && !*ok)
|
||||
{
|
||||
return i;
|
||||
}
|
||||
|
||||
p = (unsigned char *)s->init_buf->data;
|
||||
msg_len = msg_hdr->msg_len;
|
||||
@@ -1022,9 +1027,11 @@ int dtls1_read_failed(SSL *s, int code)
|
||||
}
|
||||
|
||||
#ifndef OPENSSL_NO_HEARTBEATS
|
||||
if (!SSL_in_init(s) && !s->tlsext_hb_pending) /* done, no need to send a retransmit */
|
||||
/* done, no need to send a retransmit */
|
||||
if (!SSL_in_init(s) && !s->tlsext_hb_pending)
|
||||
#else
|
||||
if (!SSL_in_init(s)) /* done, no need to send a retransmit */
|
||||
/* done, no need to send a retransmit */
|
||||
if (!SSL_in_init(s))
|
||||
#endif
|
||||
{
|
||||
BIO_set_flags(SSL_get_rbio(s), BIO_FLAGS_READ);
|
||||
|
Reference in New Issue
Block a user