summaryrefslogtreecommitdiff
path: root/nuttx/include
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-03-28 13:14:13 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-03-28 13:14:13 +0000
commit5ab468aaa6e626a86bfb10785dee660e57d894c0 (patch)
treeab39ace437376d68d309af056f73c5354e5103ee /nuttx/include
parentf53b2945a7d9f1f7cfb4892e7aa3bca711a95e67 (diff)
downloadpx4-nuttx-5ab468aaa6e626a86bfb10785dee660e57d894c0.tar.gz
px4-nuttx-5ab468aaa6e626a86bfb10785dee660e57d894c0.tar.bz2
px4-nuttx-5ab468aaa6e626a86bfb10785dee660e57d894c0.zip
Fix examples/wget build
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1649 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/include')
-rw-r--r--nuttx/include/net/uip/webclient.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/nuttx/include/net/uip/webclient.h b/nuttx/include/net/uip/webclient.h
index 1e485559d..58664335c 100644
--- a/nuttx/include/net/uip/webclient.h
+++ b/nuttx/include/net/uip/webclient.h
@@ -46,7 +46,7 @@
* Included Files
****************************************************************************/
-#ifndef CONFIG_NETUTILS_WEBCLIENT_HOST
+#ifndef CONFIG_WEBCLIENT_HOST
# include <nuttx/config.h>
#endif
#include <sys/types.h>
@@ -55,20 +55,20 @@
* Pre-processor definitions
****************************************************************************/
-#ifndef CONFIG_NETUTILS_WEBCLIENT_MAXHTTPLINE
-# define CONFIG_NETUTILS_WEBCLIENT_MAXHTTPLINE 200
+#ifndef CONFIG_WEBCLIENT_MAXHTTPLINE
+# define CONFIG_WEBCLIENT_MAXHTTPLINE 200
#endif
-#ifndef CONFIG_NETUTILS_WEBCLIENT_MAXMIMESIZE
-# define CONFIG_NETUTILS_WEBCLIENT_MAXMIMESIZE 32
+#ifndef CONFIG_WEBCLIENT_MAXMIMESIZE
+# define CONFIG_WEBCLIENT_MAXMIMESIZE 32
#endif
-#ifndef CONFIG_NETUTILS_WEBCLIENT_MAXHOSTNAME
-# define CONFIG_NETUTILS_WEBCLIENT_MAXHOSTNAME 40
+#ifndef CONFIG_WEBCLIENT_MAXHOSTNAME
+# define CONFIG_WEBCLIENT_MAXHOSTNAME 40
#endif
-#ifndef CONFIG_NETUTILS_WEBCLIENT_MAXFILENAME
-# define CONFIG_NETUTILS_WEBCLIENT_MAXFILENAME 100
+#ifndef CONFIG_WEBCLIENT_MAXFILENAME
+# define CONFIG_WEBCLIENT_MAXFILENAME 100
#endif
/****************************************************************************