summaryrefslogtreecommitdiffstats
path: root/sys/net/if_ethersubr.c
diff options
context:
space:
mode:
authormichele <michele@openbsd.org>2007-05-16 20:27:58 +0000
committermichele <michele@openbsd.org>2007-05-16 20:27:58 +0000
commit59a015ed74b49e85fc332ad3b179d7c9045ca2e3 (patch)
treed6cb9a1f42406668184d88b88df87850b0538f5d /sys/net/if_ethersubr.c
parentIn remote setup, write sent files to inlog (if specified) instead of outlog. (diff)
downloadwireguard-openbsd-59a015ed74b49e85fc332ad3b179d7c9045ca2e3.tar.xz
wireguard-openbsd-59a015ed74b49e85fc332ad3b179d7c9045ca2e3.zip
fix return values in bridge_output.
OK claudio@ jason@
Diffstat (limited to 'sys/net/if_ethersubr.c')
-rw-r--r--sys/net/if_ethersubr.c4
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);
}
}