Another safe bitfield conversion.
authorGuus Sliepen <guus@tinc-vpn.org>
Wed, 9 Sep 2009 12:51:36 +0000 (14:51 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Wed, 9 Sep 2009 12:51:36 +0000 (14:51 +0200)
src/node.c

index f2bb399..0c9033c 100644 (file)
@@ -198,7 +198,7 @@ void dump_nodes(void)
                logger(LOG_DEBUG, _(" %s at %s cipher %d digest %d maclength %d compression %d options %lx status %04x nexthop %s via %s pmtu %d (min %d max %d)"),
                           n->name, n->hostname, n->outcipher ? n->outcipher->nid : 0,
                           n->outdigest ? n->outdigest->type : 0, n->outmaclength, n->outcompression,
-                          n->options, *(uint32_t *)&n->status, n->nexthop ? n->nexthop->name : "-",
+                          n->options, bitfield_to_int(&n->status, sizeof n->status), n->nexthop ? n->nexthop->name : "-",
                           n->via ? n->via->name : "-", n->mtu, n->minmtu, n->maxmtu);
        }