1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-30 08:19:09 +00:00

Remove useless initialization to 0 of a couple of global variables.

This commit is contained in:
Luigi Rizzo 2002-02-15 04:57:18 +00:00
parent 535862401b
commit cad15830dc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=90677

View File

@ -112,11 +112,11 @@ int (*vlan_input_tag_p)(struct ether_header *eh, struct mbuf *m,
u_int16_t t);
/* bridge support */
int do_bridge = 0;
int do_bridge;
bridge_in_t *bridge_in_ptr;
bdg_forward_t *bdg_forward_ptr;
bdgtakeifaces_t *bdgtakeifaces_ptr;
struct bdg_softc *ifp2sc = NULL;
struct bdg_softc *ifp2sc;
static int ether_resolvemulti __P((struct ifnet *, struct sockaddr **,
struct sockaddr *));