Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 30397
b: refs/heads/master
c: 3ac9021
h: refs/heads/master
i:
  30395: 1099e64
v: v3
  • Loading branch information
Eric Sesterhenn authored and David S. Miller committed Jun 26, 2006
1 parent 9ca24b8 commit 75d6ae7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a4e0927902508a5f7f04be56d3c3e1b174481705
refs/heads/master: 3ac90216abc7d39e694533aec2805efeb06bf8ac
4 changes: 3 additions & 1 deletion trunk/net/tipc/bcast.c
Original file line number Diff line number Diff line change
Expand Up @@ -349,8 +349,10 @@ static void tipc_bclink_peek_nack(u32 dest, u32 sender_tag, u32 gap_after, u32 g
for (; buf; buf = buf->next) {
u32 seqno = buf_seqno(buf);

if (mod(seqno - prev) != 1)
if (mod(seqno - prev) != 1) {
buf = NULL;
break;
}
if (seqno == gap_after)
break;
prev = seqno;
Expand Down

0 comments on commit 75d6ae7

Please sign in to comment.