From 51a424a6d69e5672d78951b50cd93adbf70d9d45 Mon Sep 17 00:00:00 2001 From: Michele Marchetto Date: Wed, 16 May 2007 20:27:59 +0000 Subject: fix return values in bridge_output. OK claudio@ jason@ --- sys/net/if_ethersubr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/net/if_ethersubr.c') 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); } } -- cgit v1.2.3