makefsdata:

- fixed typo (struct ffblk, not fflbk);
- changed include path to be relative to lwip's 'include' dir
This commit is contained in:
Simon Goldschmidt 2011-11-25 17:59:09 +01:00
parent af07304f02
commit 7546907c7b
1 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@
#else
#define FIND_T struct fflbk
#define FIND_T struct ffblk
#define FIND_T_FILENAME(fInfo) (fInfo.ff_name)
#define FIND_T_IS_DIR(fInfo) ((fInfo.ff_attrib & FA_DIREC) == FA_DIREC)
#define FIND_T_IS_FILE(fInfo) (1)
@ -65,8 +65,8 @@
#define LWIP_HTTPD_SSI 1
#include "../httpd_structs.h"
#include "../../../../lwip/src/core/inet_chksum.c"
#include "../../../../lwip/src/core/def.c"
#include "../core/inet_chksum.c"
#include "../core/def.c"
/** (Your server name here) */
const char *serverID = "Server: "HTTPD_SERVER_AGENT"\r\n";