Fixed typo-bug introduced some months ago while fixing bug #41041...

This commit is contained in:
Simon Goldschmidt
2014-05-19 22:03:19 +02:00
parent dbd125c714
commit c3ac875055
2 changed files with 3 additions and 3 deletions

View File

@@ -595,7 +595,7 @@ ip_reass(struct pbuf *p)
}
/* find the previous entry in the linked list */
for (ipr_prev = reassdatagrams; ipr_prev != NULL; ipr = ipr->next) {
for (ipr_prev = reassdatagrams; ipr_prev != NULL; ipr_prev = ipr_prev->next) {
if (ipr_prev->next == ipr) {
break;
}