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

gnrc_ipv6_nib: fix retrans. timeout unit for address re-registration

This commit is contained in:
Martine Lenders 2017-11-20 13:52:32 +01:00
parent 460d3c44fe
commit 8c4eb43701
No known key found for this signature in database
GPG Key ID: 8E97A9FE55F25D62

View File

@ -230,7 +230,7 @@ void _handle_rereg_address(const ipv6_addr_t *addr)
uint32_t retrans_time;
if (_is_valid(netif, idx)) {
retrans_time = SIXLOWPAN_ND_MAX_RS_SEC_INTERVAL;
retrans_time = SIXLOWPAN_ND_MAX_RS_SEC_INTERVAL * MS_PER_SEC;
}
else {
retrans_time = netif->ipv6.retrans_time;