summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-16 01:04:17 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-16 01:04:17 +0000
commit4264cfb4e8ab918f350dc625019b8492cc8d9e40 (patch)
treef6c80ca59449872801c0050b6cdb5bf3ed27299b /nuttx/ChangeLog
parentf59a457ba7da70e76fdba829f1b17764dbc1d486 (diff)
downloadpx4-nuttx-4264cfb4e8ab918f350dc625019b8492cc8d9e40.tar.gz
px4-nuttx-4264cfb4e8ab918f350dc625019b8492cc8d9e40.tar.bz2
px4-nuttx-4264cfb4e8ab918f350dc625019b8492cc8d9e40.zip
Fix bad conditional compilation that breaks THTTPD and dup2()
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3511 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog7
1 files changed, 4 insertions, 3 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 7760d52ea..adf146a4b 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -1695,6 +1695,7 @@
file
* sched/clock_uptime() and lib/time/lib_time.c: Add support for 1 second uptime
interface.
-
-
-
+ * net/net_dup2.c and include/nuttx/net.h: The conditional compilation for
+ '#if CONFIG_NFILE_DESCRIPTOR > 0' was wrong in both of these files. It should
+ be '#if CONFIG_NFILE_DESCRIPTORS > 0'. This causes a dup2() failure in THTTPD
+ and a failure to get a CGI page. The consequence can be a very serious bug!