summaryrefslogtreecommitdiff
path: root/src/ra.c
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2013-04-08 09:12:50 +0200
committerSteven Barth <steven@midlink.org>2013-04-08 09:12:50 +0200
commit3fb3c327d889a8c5e0370259c4c6360c7d3106cb (patch)
treecfc6e794c4cea9ff8ecbf0d0432b440123e84a3d /src/ra.c
parent4369d2f0e1ab9682d677f2f8fd876329e740fb0b (diff)
downloadodhcp6c-3fb3c327d889a8c5e0370259c4c6360c7d3106cb.tar.gz
Fix compilation
Diffstat (limited to 'src/ra.c')
-rw-r--r--src/ra.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/ra.c b/src/ra.c
index 814a17d..c572c13 100644
--- a/src/ra.c
+++ b/src/ra.c
@@ -230,13 +230,15 @@ bool ra_process(void)
struct icmpv6_opt *opt;
icmpv6_for_each_option(opt, &adv[1], &buf[len]) {
if (opt->type == ND_OPT_MTU) {
- update_proc("conf", "mtu", ntohl(*((uint32_t*)&opt->data[2])));
+ uint32_t *mtu = (uint32_t*)&opt->data[2];
+ update_proc("conf", "mtu", ntohl(*mtu));
} else if (opt->type == ND_OPT_ROUTE_INFORMATION && opt->len <= 3) {
entry.router = from.sin6_addr;
entry.target = any;
entry.priority = pref_to_priority(opt->data[1]);
entry.length = opt->data[0];
- entry.valid = ntohl(*((uint32_t*)&opt->data[2]));
+ uint32_t *valid = (uint32_t*)&opt->data[2];
+ entry.valid = ntohl(*valid);
memcpy(&entry.target, &opt->data[6], (opt->len - 1) * 8);
if (entry.length > 128 || IN6_IS_ADDR_LINKLOCAL(&entry.target)
@@ -276,7 +278,8 @@ bool ra_process(void)
entry.router = from.sin6_addr;
entry.priority = 0;
entry.length = 128;
- entry.valid = ntohl(*((uint32_t*)&opt->data[2]));
+ uint32_t *valid = (uint32_t*)&opt->data[2];
+ entry.valid = ntohl(*valid);
entry.preferred = 0;
for (ssize_t i = 0; i < (opt->len - 1) / 2; ++i) {