2008-09-24 Ralf Corsépius <ralf.corsepius@rtems.org>

* libnetworking/lib/ftpfs.c: Use ssize_t for read retval (Fix
	  comparision of unsigned < 0).
This commit is contained in:
Ralf Corsepius
2008-09-24 08:52:49 +00:00
parent bfcefdd435
commit 734e6f6fb3
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2008-09-24 Ralf Corsépius <ralf.corsepius@rtems.org>
* libnetworking/lib/ftpfs.c: Use ssize_t for read retval (Fix
comparision of unsigned < 0).
2008-09-23 Eric Norum <norume@aps.anl.gov>
* libnetworking/lib/rtems_bsdnet_ntp.c: Let TCP/IP stack pick port

View File

@@ -232,7 +232,7 @@ int rtems_ftp_get_message
{
char rd_buffer[4];
size_t rd_size;
size_t tmp_size;
ssize_t tmp_size;
int eno = 0;
bool finished = false;
do {