diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-06-07 17:53:45 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-06-07 17:53:45 +0000 |
commit | f3618e3949557b2911745765284653291329f89d (patch) | |
tree | c08b385fe5ce00bb21d9d1b47f42b9f1ccefd5ae /sys | |
parent | 8dcd258a3805b6ae94624fa34aed26ac25fec394 (diff) |
oops
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/bridgestp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/net/bridgestp.c b/sys/net/bridgestp.c index dc20b1e21b2..ac9bbbac61e 100644 --- a/sys/net/bridgestp.c +++ b/sys/net/bridgestp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bridgestp.c,v 1.17 2005/06/07 17:42:58 deraadt Exp $ */ +/* $OpenBSD: bridgestp.c,v 1.18 2005/06/07 17:53:44 deraadt Exp $ */ /* * Copyright (c) 2000 Jason L. Wright (jason@thought.net) @@ -897,9 +897,9 @@ bstp_initialization(sc) (((u_int64_t)mac->ac_enaddr[0]) << 40) | (((u_int64_t)mac->ac_enaddr[1]) << 32) | ((unsigned int)mac->ac_enaddr[2] << 24) | - (((unsigned int)mac->ac_enaddr[3] << 16) | - (((unsigned int)mac->ac_enaddr[4] << 8) | - (((unsigned int)mac->ac_enaddr[5]); + ((unsigned int)mac->ac_enaddr[3] << 16) | + ((unsigned int)mac->ac_enaddr[4] << 8) | + ((unsigned int)mac->ac_enaddr[5]); sc->sc_designated_root = sc->sc_bridge_id; sc->sc_root_path_cost = 0; |