Browse Source

Fixed bug #28496: missing include guards in netdb.h

STABLE-2_1_x
goldsimon 16 years ago
parent
commit
cfe4a12a46
  1. 3
      CHANGELOG
  2. 4
      src/include/lwip/netdb.h

3
CHANGELOG

@ -33,6 +33,9 @@ HISTORY
++ Bugfixes:
2010-01-06: Simon Goldschmidt
* netdb.h: Fixed bug #28496: missing include guards in netdb.h
2009-12-31: Simon Goldschmidt
* many ppp files: Reorganised PPP source code from ucip structure to pppd
structure to easily compare our code against the pppd code (around v2.3.1)

4
src/include/lwip/netdb.h

@ -26,6 +26,8 @@
* Author: Simon Goldschmidt
*
*/
#ifndef __LWIP_NETDB_H__
#define __LWIP_NETDB_H__
#include "lwip/opt.h"
@ -109,3 +111,5 @@ int lwip_getaddrinfo(const char *nodename,
#endif /* LWIP_COMPAT_SOCKETS */
#endif /* LWIP_DNS && LWIP_SOCKET */
#endif /* __LWIP_NETDB_H__ */

Loading…
Cancel
Save