Remove a no longer used variable.

Reported by:	Felix Weinrank
MFC after:	1 week
This commit is contained in:
Michael Tuexen 2017-09-19 15:00:19 +00:00
parent d74831eea2
commit ad608f06ed
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=323763

View File

@ -4213,8 +4213,6 @@ sctp_express_handle_sack(struct sctp_tcb *stcb, uint32_t cumack,
again:
j = 0;
TAILQ_FOREACH(net, &asoc->nets, sctp_next) {
int to_ticks;
if (win_probe_recovery && (net->window_probe)) {
win_probe_recovered = 1;
/*
@ -4230,11 +4228,6 @@ sctp_express_handle_sack(struct sctp_tcb *stcb, uint32_t cumack,
}
}
}
if (net->RTO == 0) {
to_ticks = MSEC_TO_TICKS(stcb->asoc.initial_rto);
} else {
to_ticks = MSEC_TO_TICKS(net->RTO);
}
if (net->flight_size) {
j++;
sctp_timer_start(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, stcb, net);