Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 158764
b: refs/heads/master
c: 482d804
h: refs/heads/master
v: v3
  • Loading branch information
Mark Smith authored and David S. Miller committed Jul 7, 2009
1 parent fcb8426 commit 1ff375b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 5c91face51d29f553a444d16db4ac2c6162a3cd0
refs/heads/master: 482d804cb4b520b6e3134c959c968712ebcdea02
4 changes: 2 additions & 2 deletions trunk/net/econet/af_econet.c
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ static int econet_rcv(struct sk_buff *skb, struct net_device *dev, struct packet
skb->protocol = htons(ETH_P_IP);
skb_pull(skb, sizeof(struct ec_framehdr));
netif_rx(skb);
return 0;
return NET_RX_SUCCESS;
}

sk = ec_listening_socket(hdr->port, hdr->src_stn, hdr->src_net);
Expand All @@ -1083,7 +1083,7 @@ static int econet_rcv(struct sk_buff *skb, struct net_device *dev, struct packet
hdr->port))
goto drop;

return 0;
return NET_RX_SUCCESS;

drop:
kfree_skb(skb);
Expand Down

0 comments on commit 1ff375b

Please sign in to comment.