summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2005-06-07 17:53:44 +0000
committerderaadt <deraadt@openbsd.org>2005-06-07 17:53:44 +0000
commit487808d3b2ba898ab0ffeb0302e2ce7e1518a891 (patch)
treea79d904e4482e10480a68b74a32d96eb5dda9039
parentFor show rib -- show_rib_summary_msg() and print_prefix() -- use log_addr() (diff)
downloadwireguard-openbsd-487808d3b2ba898ab0ffeb0302e2ce7e1518a891.tar.xz
wireguard-openbsd-487808d3b2ba898ab0ffeb0302e2ce7e1518a891.zip
oops
-rw-r--r--sys/net/bridgestp.c8
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;