Minor building fix (if LWIP_SOCKETS, wrong opt include file)

This commit is contained in:
goldsimon 2007-10-01 20:48:01 +00:00
parent 94de15c1ba
commit a8aa89dcc2

View File

@ -47,10 +47,12 @@
* embedded system where you might not have fork().
*/
#include "lwipopts.h"
#include "lwip/opt.h"
#include "lwip/sys.h"
#include "lwip/sockets.h"
#if LWIP_SOCKET
#define MAX_SERV 5 /* Maximum number of chargen services. Don't need too many */
#define CHARGEN_THREAD_NAME "chargen"
#define CHARGEN_PRIORITY 254 /* Really low priority */
@ -259,5 +261,4 @@ void chargen_init(void)
}
#endif /* LWIP_SOCKET */