diff options
author | Ian McDonald <ian.mcdonald@jandi.co.nz> | 2006-11-20 15:44:03 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 00:24:41 -0500 |
commit | 455431739ca2f4c7f02d0a5979559ac5a68a6f95 (patch) | |
tree | b3ee30c13997b0411040f0641b1712f001a290b0 /net | |
parent | ddfe10b82455a5a524055fc606d1f1562d388dc8 (diff) |
[DCCP] CCID3: Remove non-referenced variable
This removes a non-referenced variable.
Signed-off-by: Ian McDonald <ian.mcdonald@jandi.co.nz>
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/dccp/ccids/ccid3.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/dccp/ccids/ccid3.c b/net/dccp/ccids/ccid3.c index 4eada515b773..fb21f2d9ffc6 100644 --- a/net/dccp/ccids/ccid3.c +++ b/net/dccp/ccids/ccid3.c | |||
@@ -965,7 +965,6 @@ static void ccid3_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb) | |||
965 | const struct dccp_options_received *opt_recv; | 965 | const struct dccp_options_received *opt_recv; |
966 | struct dccp_rx_hist_entry *packet; | 966 | struct dccp_rx_hist_entry *packet; |
967 | struct timeval now; | 967 | struct timeval now; |
968 | u8 win_count; | ||
969 | u32 p_prev, rtt_prev, r_sample, t_elapsed; | 968 | u32 p_prev, rtt_prev, r_sample, t_elapsed; |
970 | int loss; | 969 | int loss; |
971 | 970 | ||
@@ -1017,8 +1016,6 @@ static void ccid3_hc_rx_packet_recv(struct sock *sk, struct sk_buff *skb) | |||
1017 | return; | 1016 | return; |
1018 | } | 1017 | } |
1019 | 1018 | ||
1020 | win_count = packet->dccphrx_ccval; | ||
1021 | |||
1022 | loss = ccid3_hc_rx_detect_loss(sk, packet); | 1019 | loss = ccid3_hc_rx_detect_loss(sk, packet); |
1023 | 1020 | ||
1024 | if (DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_ACK) | 1021 | if (DCCP_SKB_CB(skb)->dccpd_type == DCCP_PKT_ACK) |