Changeset 88a0908 in rtems


Ignore:
Timestamp:
01/04/99 16:30:06 (25 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
eb0d7ae
Parents:
60a2d689
Message:

Patch from D. V. Henkel-Wallace <gumby@…> to fix braces nesting problem.

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/libnetworking/netinet/tcp_input.c

    r60a2d689 r88a0908  
    829829                         */
    830830                        if (to.to_flag & TOF_CCECHO) {
    831                                 if (tp->cc_send != to.to_ccecho)
     831                                if (tp->cc_send != to.to_ccecho) {
    832832                                        if (taop->tao_ccsent != 0)
    833833                                                goto drop;
    834834                                        else
    835835                                                goto dropwithreset;
     836                                }
    836837                        } else
    837838                                tp->t_flags &= ~TF_RCVD_CC;
  • c/src/lib/libnetworking/netinet/tcp_input.c

    r60a2d689 r88a0908  
    829829                         */
    830830                        if (to.to_flag & TOF_CCECHO) {
    831                                 if (tp->cc_send != to.to_ccecho)
     831                                if (tp->cc_send != to.to_ccecho) {
    832832                                        if (taop->tao_ccsent != 0)
    833833                                                goto drop;
    834834                                        else
    835835                                                goto dropwithreset;
     836                                }
    836837                        } else
    837838                                tp->t_flags &= ~TF_RCVD_CC;
  • c/src/libnetworking/netinet/tcp_input.c

    r60a2d689 r88a0908  
    829829                         */
    830830                        if (to.to_flag & TOF_CCECHO) {
    831                                 if (tp->cc_send != to.to_ccecho)
     831                                if (tp->cc_send != to.to_ccecho) {
    832832                                        if (taop->tao_ccsent != 0)
    833833                                                goto drop;
    834834                                        else
    835835                                                goto dropwithreset;
     836                                }
    836837                        } else
    837838                                tp->t_flags &= ~TF_RCVD_CC;
  • cpukit/libnetworking/netinet/tcp_input.c

    r60a2d689 r88a0908  
    829829                         */
    830830                        if (to.to_flag & TOF_CCECHO) {
    831                                 if (tp->cc_send != to.to_ccecho)
     831                                if (tp->cc_send != to.to_ccecho) {
    832832                                        if (taop->tao_ccsent != 0)
    833833                                                goto drop;
    834834                                        else
    835835                                                goto dropwithreset;
     836                                }
    836837                        } else
    837838                                tp->t_flags &= ~TF_RCVD_CC;
Note: See TracChangeset for help on using the changeset viewer.