diff options
| author | Stephen Hemminger <[email protected]> | 2006-08-03 16:24:02 -0700 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2006-08-04 22:59:48 -0700 |
| commit | bea1b42e1bb184cb75e6bbd95c83e4478dde4ab9 (patch) | |
| tree | 579c5ef90eb9ba5cec9627f0b208de0041f5099b | |
| parent | f5d635f649607b09b0b4620d25d028fd2b1b7ea5 (diff) | |
[BRIDGE]: netlink status fix
Fix code that passes back netlink status messages about
bridge changes. Submitted by [email protected]
Signed-off-by: Stephen Hemminger <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
| -rw-r--r-- | net/bridge/br_netlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/br_netlink.c b/net/bridge/br_netlink.c index 06abb6634f5b..53086fb75089 100644 --- a/net/bridge/br_netlink.c +++ b/net/bridge/br_netlink.c @@ -85,7 +85,7 @@ void br_ifinfo_notify(int event, struct net_bridge_port *port) goto err_out; err = br_fill_ifinfo(skb, port, current->pid, 0, event, 0); - if (err) + if (err < 0) goto err_kfree; NETLINK_CB(skb).dst_group = RTNLGRP_LINK; |