1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00

Merge pull request #3563 from cgundogan/pr/ng_ndp/minor_docfix

ng_ndp + ng_ipv6: minor spelling fixes
This commit is contained in:
Martine Lenders 2015-08-05 15:01:20 +02:00
commit 81baf36ee2
2 changed files with 3 additions and 3 deletions

View File

@ -222,7 +222,7 @@ ng_pktsnip_t *ng_ndp_nbr_sol_build(ng_ipv6_addr_t *tgt, ng_pktsnip_t *options);
* @param[in] tgt For solicited advertisements, the Target Address field
* in the neighbor solicitaton.
* For and unsolicited advertisement, the address whose
* link-layer addres has changed.
* link-layer address has changed.
* MUST NOT be multicast.
* @param[in] options Options to append to the neighbor advertisement.
*

View File

@ -180,7 +180,7 @@ static void *_event_loop(void *args)
break;
case NG_NDP_MSG_NC_STATE_TIMEOUT:
DEBUG("ipv6: Neigbor cace state timeout received\n");
DEBUG("ipv6: Neigbor cache state timeout received\n");
ng_ndp_state_timeout((ng_ipv6_nc_t *)msg.content.ptr);
break;
@ -234,7 +234,7 @@ static void _send_unicast(kernel_pid_t iface, uint8_t *dst_l2addr,
pkt = ng_pktbuf_remove_snip(pkt, pkt);
}
DEBUG("ipv6: add to interface header to packet\n");
DEBUG("ipv6: add interface header to packet\n");
netif = ng_netif_hdr_build(NULL, 0, dst_l2addr, dst_l2addr_len);
if (netif == NULL) {