diff options
author | Michele Marchetto <michele@cvs.openbsd.org> | 2007-05-16 20:27:59 +0000 |
---|---|---|
committer | Michele Marchetto <michele@cvs.openbsd.org> | 2007-05-16 20:27:59 +0000 |
commit | 51a424a6d69e5672d78951b50cd93adbf70d9d45 (patch) | |
tree | 7f6f271e9ef6c3f4f2e1a4e07685e462f8142fae /sys/net/if_ethersubr.c | |
parent | f75b7e3a2f01c56555fcd65d95ed12e412181008 (diff) |
fix return values in bridge_output.
OK claudio@ jason@
Diffstat (limited to 'sys/net/if_ethersubr.c')
-rw-r--r-- | sys/net/if_ethersubr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c index 4818545a3ca..9399c0f8b00 100644 --- a/sys/net/if_ethersubr.c +++ b/sys/net/if_ethersubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ethersubr.c,v 1.107 2007/05/16 09:24:07 dlg Exp $ */ +/* $OpenBSD: if_ethersubr.c,v 1.108 2007/05/16 20:27:58 michele Exp $ */ /* $NetBSD: if_ethersubr.c,v 1.19 1996/05/07 02:40:30 thorpej Exp $ */ /* @@ -443,7 +443,7 @@ ether_output(ifp0, m0, dst, rt0) } bcopy(&ifp->if_bridge, mtag + 1, sizeof(caddr_t)); m_tag_prepend(m, mtag); - bridge_output(ifp, m, NULL, NULL); + error = bridge_output(ifp, m, NULL, NULL); return (error); } } |