Fix a mis-merge. Remove a redundant call to tcp_sackhole_insert

Submitted by:	Mohan Srinivasan
This commit is contained in:
Paul Saab 2005-06-09 17:55:29 +00:00
parent 13a82b9623
commit e912f906d0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=147180

View File

@ -461,7 +461,6 @@ tcp_sack_option(struct tcpcb *tp, struct tcphdr *th, u_char *cp, int optlen)
temp = tcp_sackhole_insert(tp, tp->snd_fack,sblkp->start,NULL);
if (temp == NULL)
return 0;
tcp_sackhole_insert(tp, tp->snd_fack, sblkp->start, NULL);
tp->snd_fack = sblkp->end;
/* Go to the previous sack block. */
sblkp--;