1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #2996 from jfischer-phytec-iot/fix@icmp-prefix-l-param

sys/.../icmp.c: fix wrong ndp_add_prefix_info parameter
This commit is contained in:
Oleg Hahm 2015-05-16 19:50:07 +02:00
commit 5ad4b1f915

View File

@ -832,7 +832,7 @@ void recv_rtr_adv(void)
}
}
ndp_add_prefix_info(if_id, &opt_pi_buf->addr, opt_pi_buf->length,
ndp_add_prefix_info(if_id, &opt_pi_buf->addr, opt_pi_buf->prefix_length,
opt_pi_buf->val_ltime, opt_pi_buf->pref_ltime,
0, opt_pi_buf->l_a_reserved1);