summaryrefslogtreecommitdiff
path: root/apps/examples/uip/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/uip/main.c')
-rw-r--r--apps/examples/uip/main.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/examples/uip/main.c b/apps/examples/uip/main.c
index e4ba6dfdb..8712b9a28 100644
--- a/apps/examples/uip/main.c
+++ b/apps/examples/uip/main.c
@@ -2,7 +2,7 @@
* examples/uip/main.c
*
* Copyright (C) 2007, 2009-2011 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Based on uIP which also has a BSD style license:
*
@@ -123,10 +123,10 @@ int user_start(int argc, char *argv[])
#ifdef CONFIG_EXAMPLE_UIP_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