From b1e43c09bda98ba3caf419e99de6639170ce309a Mon Sep 17 00:00:00 2001 From: patacongo Date: Fri, 26 Nov 2010 05:26:27 +0000 Subject: Fix un-acked backlog coordinatin bug git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3133 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/examples/thttpd/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'nuttx/examples') diff --git a/nuttx/examples/thttpd/main.c b/nuttx/examples/thttpd/main.c index 7c0c555c7..9bdc44eac 100644 --- a/nuttx/examples/thttpd/main.c +++ b/nuttx/examples/thttpd/main.c @@ -1,7 +1,7 @@ /**************************************************************************** * examples/thttpd/main.c * - * Copyright (C) 2009 Gregory Nutt. All rights reserved. + * Copyright (C) 2009-2010 Gregory Nutt. All rights reserved. * Author: Gregory Nutt * * Redistribution and use in source and binary forms, with or without @@ -158,7 +158,7 @@ void user_initialize(void) int user_start(int argc, char *argv[]) { struct in_addr addr; -#ifdef CONFIG_EXAMPLE_UIP_NOMAC +#ifdef CONFIG_EXAMPLE_THTTPD_NOMAC uint8_t mac[IFHWADDRLEN]; #endif char *thttpd_argv = "thttpd"; @@ -166,7 +166,7 @@ int user_start(int argc, char *argv[]) /* Many embedded network interfaces must have a software assigned MAC */ -#ifdef CONFIG_EXAMPLE_UIP_NOMAC +#ifdef CONFIG_EXAMPLE_THTTPD_NOMAC message("Assigning MAC\n"); mac[0] = 0x00; -- cgit v1.2.3