summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-08-17 16:19:13 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-08-17 16:19:13 +0000
commitef3f1a8672de0cc79514af2139c1a567a36a3783 (patch)
treed725e5e9ea7a7bd7a172dfa6f9b491c499d06cb9 /nuttx/ChangeLog
parent002549e43c326202f941483a7249a8f088c842ea (diff)
downloadnuttx-ef3f1a8672de0cc79514af2139c1a567a36a3783.tar.gz
nuttx-ef3f1a8672de0cc79514af2139c1a567a36a3783.tar.bz2
nuttx-ef3f1a8672de0cc79514af2139c1a567a36a3783.zip
Fix error in FAT FS when file opened for O_APPEND
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@827 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 7e7ce7c6c..1c828cf7e 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -406,4 +406,10 @@
int and unsigned int.
* Add support for redirection of command output in NSH
* NSH can now use both telnet and serial front ends together
+ * $variable can be used for any command value in NSH.
+ * Fixed an error in opendir() that could cause an assertion to fail
+ inappropriately.
+ * Correct an error in the FAT that caused files opened for writing with
+ O_APPEND to fail. The file was not being properly positioned to the
+ end of the file in that case.