From ff946d0423fe547ea42bb11acfb3035c3b8aee4e Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Wed, 9 Sep 2009 14:51:36 +0200 Subject: [PATCH] Another safe bitfield conversion. --- src/node.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.c b/src/node.c index f2bb3990..0c9033ca 100644 --- a/src/node.c +++ b/src/node.c @@ -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); } -- 2.20.1