2002-08-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* rtems_servers/ftpd.c: Remove unused variable buf.
	* pppd/md5.c: #include <string.h> to make gcc31 happy.
	* rtems_telnetd/telnetd.c: #include <string.h> to make gcc31 happy.
	* rtems_webserver/webmain.c: Remove unused variable dir, cp.
This commit is contained in:
Ralf Corsepius
2002-08-14 10:44:49 +00:00
parent c6fa38ba29
commit 2129ac821d
9 changed files with 15 additions and 6 deletions
+7
View File
@@ -1,3 +1,10 @@
2002-08-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* rtems_servers/ftpd.c: Remove unused variable buf.
* pppd/md5.c: #include <string.h> to make gcc31 happy.
* rtems_telnetd/telnetd.c: #include <string.h> to make gcc31 happy.
* rtems_webserver/webmain.c: Remove unused variable dir, cp.
2002-08-12 Joel Sherrill <joel@OARcorp.com>
* pppd/utils.c: Include i960 in varargs conditional to avoid error.
+2
View File
@@ -33,6 +33,8 @@
***********************************************************************
*/
#include <string.h> /* memcpy */
#include "md5.h"
/*
-1
View File
@@ -1838,7 +1838,6 @@ session(rtems_task_argument arg)
while(1)
{
rtems_event_set set;
char buf[128];
rtems_event_receive(FTPD_RTEMS_EVENT, RTEMS_EVENT_ANY, RTEMS_NO_TIMEOUT,
&set);
@@ -32,6 +32,7 @@
#include <arpa/inet.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h> /* memset */
#include <stdio.h>
/***********************************************************/
rtems_id telnetd_task_id =0;
@@ -176,8 +176,7 @@ static int initWebs()
{
struct hostent* hp;
struct in_addr intaddr;
char host[128], dir[128], webdir[128];
char *cp;
char host[128], webdir[128];
char_t wbuf[128];
/*
-1
View File
@@ -1838,7 +1838,6 @@ session(rtems_task_argument arg)
while(1)
{
rtems_event_set set;
char buf[128];
rtems_event_receive(FTPD_RTEMS_EVENT, RTEMS_EVENT_ANY, RTEMS_NO_TIMEOUT,
&set);
+1 -2
View File
@@ -176,8 +176,7 @@ static int initWebs()
{
struct hostent* hp;
struct in_addr intaddr;
char host[128], dir[128], webdir[128];
char *cp;
char host[128], webdir[128];
char_t wbuf[128];
/*
+2
View File
@@ -33,6 +33,8 @@
***********************************************************************
*/
#include <string.h> /* memcpy */
#include "md5.h"
/*
+1
View File
@@ -32,6 +32,7 @@
#include <arpa/inet.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h> /* memset */
#include <stdio.h>
/***********************************************************/
rtems_id telnetd_task_id =0;