Fix typo in meth driver
An | in an if statement to check a bit? I think this needs to be a &. As a result of this typo meth will always operate in promiscuous mode. Signed-off-by: Christoph Lameter <cl@linux-foundation.org> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
parent
a6a5325239
commit
cdc18a6709
1 changed files with 1 additions and 1 deletions
|
@ -287,7 +287,7 @@ int meth_reset(struct net_device *dev)
|
|||
|
||||
/* Initial mode: 10 | Half-duplex | Accept normal packets */
|
||||
priv->mac_ctrl = METH_ACCEPT_MCAST | METH_DEFAULT_IPG;
|
||||
if (dev->flags | IFF_PROMISC)
|
||||
if (dev->flags & IFF_PROMISC)
|
||||
priv->mac_ctrl |= METH_PROMISC;
|
||||
mace->eth.mac_ctrl = priv->mac_ctrl;
|
||||
|
||||
|
|
Loading…
Reference in a new issue