Browse Source

bug #27267: Added include to string.h where needed

STABLE-2_1_x
goldsimon 17 years ago
parent
commit
0e91e2adf2
  1. 3
      CHANGELOG
  2. 2
      src/netif/ppp/auth.c
  3. 1
      src/netif/ppp/chap.c
  4. 2
      src/netif/ppp/fsm.c
  5. 2
      src/netif/ppp/md5.c
  6. 2
      src/netif/ppp/pap.c
  7. 1
      src/netif/ppp/randm.c

3
CHANGELOG

@ -25,6 +25,9 @@ HISTORY
++ Bugfixes:
2009-08-23 Simon Goldschmidt
* many ppp files: bug #27267: Added include to string.h where needed
2009-08-23 Simon Goldschmidt
* tcp.h: patch #6843: tcp.h macro optimization patch (for little endian)

2
src/netif/ppp/auth.c

@ -82,6 +82,8 @@
#include "cbcp.h"
#endif /* CBCP_SUPPORT */
#include <string.h>
/*************************/
/*** LOCAL DEFINITIONS ***/
/*************************/

1
src/netif/ppp/chap.c

@ -82,6 +82,7 @@
#include "chap.h"
#include "chpms.h"
#include <string.h>
/*************************/
/*** LOCAL DEFINITIONS ***/

2
src/netif/ppp/fsm.c

@ -64,6 +64,8 @@
#include "fsm.h"
#include <string.h>
/*************************/
/*** LOCAL DEFINITIONS ***/

2
src/netif/ppp/md5.c

@ -42,6 +42,8 @@
#include "md5.h"
#include <string.h>
/*
***********************************************************************
** Message-digest routines: **

2
src/netif/ppp/pap.c

@ -61,6 +61,8 @@
#include "auth.h"
#include "pap.h"
#include <string.h>
/***********************************/
/*** LOCAL FUNCTION DECLARATIONS ***/
/***********************************/

1
src/netif/ppp/randm.c

@ -41,6 +41,7 @@
#include "ppp.h"
#include "pppdebug.h"
#include <string.h>
#if MD5_SUPPORT /* this module depends on MD5 */
#define RANDPOOLSZ 16 /* Bytes stored in the pool of randomness. */

Loading…
Cancel
Save