aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/ccids/ccid3.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/dccp/ccids/ccid3.c')
-rw-r--r--net/dccp/ccids/ccid3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/dccp/ccids/ccid3.c b/net/dccp/ccids/ccid3.c
index 820bc25e14dc..936704d1b77e 100644
--- a/net/dccp/ccids/ccid3.c
+++ b/net/dccp/ccids/ccid3.c
@@ -540,11 +540,11 @@ static void ccid3_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb)
540 jiffies + usecs_to_jiffies(t_nfb)); 540 jiffies + usecs_to_jiffies(t_nfb));
541 541
542 /* set idle flag */ 542 /* set idle flag */
543 hctx->ccid3hctx_idle = 1; 543 hctx->ccid3hctx_idle = 1;
544 break; 544 break;
545 case TFRC_SSTATE_NO_SENT: 545 case TFRC_SSTATE_NO_SENT:
546 if (dccp_sk(sk)->dccps_role == DCCP_ROLE_CLIENT) 546 /* XXX when implementing bidirectional rx/tx check this again */
547 DCCP_WARN("Illegal ACK received - no packet sent\n"); 547 DCCP_WARN("Illegal ACK received - no packet sent\n");
548 /* fall through */ 548 /* fall through */
549 case TFRC_SSTATE_TERM: /* ignore feedback when closing */ 549 case TFRC_SSTATE_TERM: /* ignore feedback when closing */
550 break; 550 break;