mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
fix return value of __pppoe_xmit() method.
Hi, __pppoe_xmit() in drivers/net/pppoe always returns 1. When the methods fails (via goto abort), it should return 0 and not 1. Regards, Rami Rosen Signed-off-by: Rami Rosen <ramirose@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5918e2fb90
commit
55c95e738d
@ -949,7 +949,7 @@ static int __pppoe_xmit(struct sock *sk, struct sk_buff *skb)
|
||||
|
||||
abort:
|
||||
kfree_skb(skb);
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/************************************************************************
|
||||
|
Loading…
Reference in New Issue
Block a user