Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 103581
b: refs/heads/master
c: 51ce7ec
h: refs/heads/master
i:
  103579: 1b03894
v: v3
  • Loading branch information
Patrick McHardy authored and David S. Miller committed Jul 17, 2008
1 parent 935d666 commit ed959bb
Show file tree
Hide file tree
Showing 2 changed files with 5 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: 9a6d276e85aa3d8f308fc5e8de6892daeb60ae5f
refs/heads/master: 51ce7ec92187b22ab1598987bb5f9776f6e0ebad
5 changes: 4 additions & 1 deletion trunk/net/802/garp.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,10 @@ static void garp_attr_event(struct garp_applicant *app,
case GARP_ACTION_NONE:
break;
case GARP_ACTION_S_JOIN_IN:
garp_pdu_append_attr(app, attr, GARP_JOIN_IN);
/* When appending the attribute fails, don't update state in
* order to retry on next TRANSMIT_PDU event. */
if (garp_pdu_append_attr(app, attr, GARP_JOIN_IN) < 0)
return;
break;
case GARP_ACTION_S_LEAVE_EMPTY:
garp_pdu_append_attr(app, attr, GARP_LEAVE_EMPTY);
Expand Down

0 comments on commit ed959bb

Please sign in to comment.