From d0ea7c2a0c4d0270cbd739f8fb9e42d8f379186c Mon Sep 17 00:00:00 2001
From: Sebastian Sontberg <sebastian@sontberg.de>
Date: Mon, 4 May 2015 14:50:18 +0200
Subject: [PATCH] ng_icmpv6_echo: fix call to undefined function

---
 sys/net/network_layer/ng_icmpv6/echo/ng_icmpv6_echo.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys/net/network_layer/ng_icmpv6/echo/ng_icmpv6_echo.c b/sys/net/network_layer/ng_icmpv6/echo/ng_icmpv6_echo.c
index 24f4701acb..a3897c7b64 100644
--- a/sys/net/network_layer/ng_icmpv6/echo/ng_icmpv6_echo.c
+++ b/sys/net/network_layer/ng_icmpv6/echo/ng_icmpv6_echo.c
@@ -67,9 +67,9 @@ void ng_icmpv6_echo_req_handle(kernel_pid_t iface, ng_ipv6_hdr_t *ipv6_hdr,
         return;
     }
 
-    pkt = _echo_build(NG_ICMPV6_ECHO_REP, byteorder_ntohs(echo->id),
-                      byteorder_ntohs(echo->seq), payload,
-                      len - sizeof(ng_icmpv6_echo_t));
+    pkt = ng_icmpv6_echo_build(NG_ICMPV6_ECHO_REP, byteorder_ntohs(echo->id),
+                               byteorder_ntohs(echo->seq), payload,
+                               len - sizeof(ng_icmpv6_echo_t));
 
     if (pkt == NULL) {
         DEBUG("icmpv6_echo: no space left in packet buffer\n");
-- 
GitLab