From a664117feae95bcabd973482489ce717bd413866 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 20 Jan 2015 20:54:51 -0600 Subject: Should fix some errors reported by Travis --- apps/examples/nettest/nettest.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'apps') diff --git a/apps/examples/nettest/nettest.c b/apps/examples/nettest/nettest.c index 59a56abf6..c42f688c6 100644 --- a/apps/examples/nettest/nettest.c +++ b/apps/examples/nettest/nettest.c @@ -118,7 +118,7 @@ int main(int argc, FAR char *argv[]) int nettest_main(int argc, char *argv[]) #endif { -#ifdef CONFIG_EXAMPLES_NETTEST_IPv4 +#ifndef CONFIG_EXAMPLES_NETTEST_IPv6 struct in_addr addr; #endif #ifdef CONFIG_EXAMPLES_NETTEST_NOMAC @@ -134,7 +134,7 @@ int nettest_main(int argc, char *argv[]) mac[3] = 0xad; mac[4] = 0xbe; mac[5] = 0xef; - netlib_setmacaddr(EXAMPLES_NETTEST_IPv6NETMASK_, mac); + netlib_setmacaddr("eth0", mac); #endif #ifdef CONFIG_EXAMPLES_NETTEST_IPv6 @@ -156,17 +156,17 @@ int nettest_main(int argc, char *argv[]) /* Set up our host address */ addr.s_addr = HTONL(CONFIG_EXAMPLES_NETTEST_IPADDR); - netlib_set_ipv4addr(EXAMPLES_NETTEST_IPv6NETMASK_, &addr); + netlib_set_ipv4addr("eth0", &addr); /* Set up the default router address */ addr.s_addr = HTONL(CONFIG_EXAMPLES_NETTEST_DRIPADDR); - netlib_set_dripv4addr(EXAMPLES_NETTEST_IPv6NETMASK_, &addr); + netlib_set_dripv4addr("eth0", &addr); /* Setup the subnet mask */ addr.s_addr = HTONL(CONFIG_EXAMPLES_NETTEST_NETMASK); - netlib_set_ipv4netmask(EXAMPLES_NETTEST_IPv6NETMASK_, &addr); + netlib_set_ipv4netmask("eth0", &addr); #endif #ifdef CONFIG_EXAMPLES_NETTEST_SERVER -- cgit v1.2.3