More FTP client fixes

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3661 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2011-06-02 20:45:35 +00:00
parent 10e27f6179
commit 134a1a930e
2 changed files with 7 additions and 4 deletions

View File

@ -86,10 +86,13 @@
int fgetc(FAR FILE *stream)
{
unsigned char c;
if (lib_fread(&c, 1, stream) > 0)
unsigned char ch;
ssize_t ret;
ret = lib_fread(&ch, 1, stream);
if (ret > 0)
{
return c;
return ch;
}
else
{

View File

@ -99,7 +99,7 @@
FAR char *gets(FAR char *s)
{
/* gets is ALMOST the same as fgets using stdin and no
* lenght limit (hence, the unsafeness of gets). So let
* length limit (hence, the unsafeness of gets). So let
* fgets do most of the work.
*/