Fix syntax in last commit.

This commit is contained in:
Matthew Dillon 2002-12-17 00:24:48 +00:00
parent e7c30f884f
commit 967adce8df
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=107961
2 changed files with 6 additions and 6 deletions

View File

@ -1464,10 +1464,10 @@ tcp_input(m, off0)
tcpstat.tcps_rcvdupbyte += tlen;
tcpstat.tcps_pawsdrop++;
if (tlen) {
goto dropafterack;
goto dropafterack;
} else {
printf("PAWS ack-on-ack loop avoided\n");
goto drop;
printf("PAWS ack-on-ack loop avoided\n");
goto drop;
}
}
}

View File

@ -1464,10 +1464,10 @@ tcp_input(m, off0)
tcpstat.tcps_rcvdupbyte += tlen;
tcpstat.tcps_pawsdrop++;
if (tlen) {
goto dropafterack;
goto dropafterack;
} else {
printf("PAWS ack-on-ack loop avoided\n");
goto drop;
printf("PAWS ack-on-ack loop avoided\n");
goto drop;
}
}
}