Changeset 2129ac8 in rtems


Ignore:
Timestamp:
08/14/02 10:44:49 (22 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
37bb9bf
Parents:
c6fa38ba
Message:

2002-08-14 Ralf Corsepius <corsepiu@…>

  • 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.
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • c/src/libnetworking/ChangeLog

    rc6fa38ba r2129ac8  
     12002-08-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * rtems_servers/ftpd.c: Remove unused variable buf.
     4        * pppd/md5.c: #include <string.h> to make gcc31 happy.
     5        * rtems_telnetd/telnetd.c: #include <string.h> to make gcc31 happy.
     6        * rtems_webserver/webmain.c: Remove unused variable dir, cp.
     7
    182002-08-12      Joel Sherrill <joel@OARcorp.com>
    29
  • c/src/libnetworking/pppd/md5.c

    rc6fa38ba r2129ac8  
    3333 ***********************************************************************
    3434 */
     35
     36#include <string.h>     /* memcpy */
    3537
    3638#include "md5.h"
  • c/src/libnetworking/rtems_servers/ftpd.c

    rc6fa38ba r2129ac8  
    18391839  {
    18401840    rtems_event_set set;
    1841     char buf[128];
    18421841
    18431842    rtems_event_receive(FTPD_RTEMS_EVENT, RTEMS_EVENT_ANY, RTEMS_NO_TIMEOUT,
  • c/src/libnetworking/rtems_telnetd/telnetd.c

    rc6fa38ba r2129ac8  
    3333#include <unistd.h>
    3434#include <stdlib.h>
     35#include <string.h>     /* memset */
    3536#include <stdio.h>
    3637/***********************************************************/
  • c/src/libnetworking/rtems_webserver/webmain.c

    rc6fa38ba r2129ac8  
    177177        struct hostent* hp;
    178178        struct in_addr  intaddr;
    179         char                    host[128], dir[128], webdir[128];
    180         char                    *cp;
     179        char                    host[128], webdir[128];
    181180        char_t                  wbuf[128];
    182181
  • cpukit/ftpd/ftpd.c

    rc6fa38ba r2129ac8  
    18391839  {
    18401840    rtems_event_set set;
    1841     char buf[128];
    18421841
    18431842    rtems_event_receive(FTPD_RTEMS_EVENT, RTEMS_EVENT_ANY, RTEMS_NO_TIMEOUT,
  • cpukit/httpd/webmain.c

    rc6fa38ba r2129ac8  
    177177        struct hostent* hp;
    178178        struct in_addr  intaddr;
    179         char                    host[128], dir[128], webdir[128];
    180         char                    *cp;
     179        char                    host[128], webdir[128];
    181180        char_t                  wbuf[128];
    182181
  • cpukit/pppd/md5.c

    rc6fa38ba r2129ac8  
    3333 ***********************************************************************
    3434 */
     35
     36#include <string.h>     /* memcpy */
    3537
    3638#include "md5.h"
  • cpukit/telnetd/telnetd.c

    rc6fa38ba r2129ac8  
    3333#include <unistd.h>
    3434#include <stdlib.h>
     35#include <string.h>     /* memset */
    3536#include <stdio.h>
    3637/***********************************************************/
Note: See TracChangeset for help on using the changeset viewer.