From e72ddd2f366c2111ad6dab87200a76d59239d2a1 Mon Sep 17 00:00:00 2001 From: patacongo Date: Sun, 17 Aug 2008 16:19:13 +0000 Subject: [PATCH] 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 --- Documentation/NuttX.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index fdf88f3af62..c4bbf8b4202 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -8,7 +8,7 @@

NuttX RTOS

-

Last Updated: August 16, 2008

+

Last Updated: August 17, 2008

@@ -1040,6 +1040,12 @@ nuttx-0.3.13 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> 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. pascal-0.1.3 2008-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>