Skip to content

Commit

Permalink
fixup! gnrc_ipv6_nib: don't auto-configure IPv6 w/o SLAAC on non-6LN …
Browse files Browse the repository at this point in the history
…interface
  • Loading branch information
miri64 committed Oct 20, 2019
1 parent 4a50e13 commit 35ebfbd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sys/net/gnrc/network_layer/ipv6/nib/_nib-slaac.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ void _auto_configure_addr(gnrc_netif_t *netif, const ipv6_addr_t *pfx,

#if !GNRC_IPV6_NIB_CONF_SLAAC
if (!gnrc_netif_is_6ln(netif)) {
LOG_WARNING("SLAAC not activated; won't auto-configure IPv6 for "
"interface %u\n"
" Use GNRC_IPV6_NIB_CONF_SLAAC=1 to activate\n",
LOG_WARNING("SLAAC not activated; will not auto-configure IPv6 address "
"for interface %u.\n"
" Use GNRC_IPV6_NIB_CONF_SLAAC=1 to activate.\n",
netif->pid);
return;
}
Expand Down

0 comments on commit 35ebfbd

Please sign in to comment.