indent has problems with comments that are on the right hand side of a line.
[openssl.git] / ssl / d1_both.c
index 26e1da25e9898fbfbc95d2a370d4a07b28cbdc7e..b70192b4428e7ea313e58322849382ec42c7c034 100644 (file)
@@ -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);