aboutsummaryrefslogtreecommitdiff
path: root/apps/examples/wget
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-19 22:32:19 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-19 22:32:19 +0000
commit3f48ca481b6649ffd8f5856088b2b04a33e98605 (patch)
tree07fab6defe3d5b4d913c978259a011b86e9e7851 /apps/examples/wget
parent43b043c4966f3bbb49d473b8ab9f6000421c3280 (diff)
downloadpx4-firmware-3f48ca481b6649ffd8f5856088b2b04a33e98605.tar.gz
px4-firmware-3f48ca481b6649ffd8f5856088b2b04a33e98605.tar.bz2
px4-firmware-3f48ca481b6649ffd8f5856088b2b04a33e98605.zip
Fix some questionable MAC addresses
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4956 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'apps/examples/wget')
-rw-r--r--apps/examples/wget/target.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/examples/wget/target.c b/apps/examples/wget/target.c
index 542220162..fa30e037b 100644
--- a/apps/examples/wget/target.c
+++ b/apps/examples/wget/target.c
@@ -2,7 +2,7 @@
* examples/wget/target.c
*
* Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -121,10 +121,10 @@ int user_start(int argc, char *argv[])
#ifdef CONFIG_EXAMPLE_WGET_NOMAC
mac[0] = 0x00;
mac[1] = 0xe0;
- mac[2] = 0xb0;
- mac[3] = 0x0b;
- mac[4] = 0xba;
- mac[5] = 0xbe;
+ mac[2] = 0xde;
+ mac[3] = 0xad;
+ mac[4] = 0xbe;
+ mac[5] = 0xef;
uip_setmacaddr("eth0", mac);
#endif