Merge pull request #2912 from sgso/fix-ng_icmpv6_echo

ng_icmpv6_echo: fix call to undefined function
This commit is contained in:
Hauke Petersen 2015-05-04 17:55:42 +02:00
commit 196689328f

View File

@ -67,7 +67,7 @@ void ng_icmpv6_echo_req_handle(kernel_pid_t iface, ng_ipv6_hdr_t *ipv6_hdr,
return; return;
} }
pkt = _echo_build(NG_ICMPV6_ECHO_REP, byteorder_ntohs(echo->id), pkt = ng_icmpv6_echo_build(NG_ICMPV6_ECHO_REP, byteorder_ntohs(echo->id),
byteorder_ntohs(echo->seq), payload, byteorder_ntohs(echo->seq), payload,
len - sizeof(ng_icmpv6_echo_t)); len - sizeof(ng_icmpv6_echo_t));