From 84b646aaa47acb84409d4428c0c663f054d0f51c Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Wed, 8 Nov 2017 15:33:53 +0100 Subject: [PATCH] tests: fix gnrc_sock_dns test for gnrc_netif2 --- tests/gnrc_sock_dns/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/gnrc_sock_dns/main.c b/tests/gnrc_sock_dns/main.c index 4c14460d71..2573f5c569 100644 --- a/tests/gnrc_sock_dns/main.c +++ b/tests/gnrc_sock_dns/main.c @@ -40,7 +40,7 @@ sock_udp_ep_t sock_dns_server; /* import "ifconfig" shell command, used for printing addresses */ -extern int _netif_config(int argc, char **argv); +extern int _gnrc_netif2_config(int argc, char **argv); int main(void) { @@ -53,7 +53,7 @@ int main(void) /* print network addresses */ puts("Configured network interfaces:"); - _netif_config(0, NULL); + _gnrc_netif2_config(0, NULL); int res = sock_dns_query(TEST_NAME, addr, AF_UNSPEC); if (res > 0) {