Convert bitfields to integers in a safe way.

This is commit eb391c52ee redone, but without the
non-standard anonymous union.
This commit is contained in:
Guus Sliepen 2009-09-09 12:04:08 +02:00
parent 9b394bc887
commit 81afa26e4a
4 changed files with 11 additions and 2 deletions

View file

@ -251,7 +251,7 @@ static void check_dead_connections(void)
} else {
if(c->status.remove) {
logger(LOG_WARNING, _("Old connection_t for %s (%s) status %04x still lingering, deleting..."),
c->name, c->hostname, *(uint32_t *)&c->status);
c->name, c->hostname, bitfield_to_int(&c->status, sizeof c->status));
connection_del(c);
continue;
}