summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-01-20 20:54:51 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-01-20 20:54:51 -0600
commita664117feae95bcabd973482489ce717bd413866 (patch)
treec5d7926f6163dfbb3f0945bc911d4959dee6e997 /apps
parent159f3ac4dde1c14001d6afc8ce701532b2448a92 (diff)
downloadnuttx-a664117feae95bcabd973482489ce717bd413866.tar.gz
nuttx-a664117feae95bcabd973482489ce717bd413866.tar.bz2
nuttx-a664117feae95bcabd973482489ce717bd413866.zip
Should fix some errors reported by Travis
Diffstat (limited to 'apps')
-rw-r--r--apps/examples/nettest/nettest.c10
1 files changed, 5 insertions, 5 deletions
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