diff options
-rw-r--r-- | net/dccp/ccids/ccid3.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/dccp/ccids/ccid3.c b/net/dccp/ccids/ccid3.c index bd353044c547..721efc7ed319 100644 --- a/net/dccp/ccids/ccid3.c +++ b/net/dccp/ccids/ccid3.c | |||
@@ -555,7 +555,8 @@ static void ccid3_hc_tx_packet_recv(struct sock *sk, struct sk_buff *skb) | |||
555 | hctx->ccid3hctx_idle = 1; | 555 | hctx->ccid3hctx_idle = 1; |
556 | break; | 556 | break; |
557 | case TFRC_SSTATE_NO_SENT: | 557 | case TFRC_SSTATE_NO_SENT: |
558 | DCCP_WARN("Illegal ACK received - no packet has been sent\n"); | 558 | if (dccp_sk(sk)->dccps_role == DCCP_ROLE_CLIENT) |
559 | DCCP_WARN("Illegal ACK received - no packet sent\n"); | ||
559 | /* fall through */ | 560 | /* fall through */ |
560 | case TFRC_SSTATE_TERM: /* ignore feedback when closing */ | 561 | case TFRC_SSTATE_TERM: /* ignore feedback when closing */ |
561 | break; | 562 | break; |