Fixed type in define: CUSTUM -> CUSTOM

This commit is contained in:
Simon Goldschmidt 2011-11-28 22:22:17 +01:00
parent 7546907c7b
commit 16e98196e0

View File

@ -37,15 +37,15 @@
/** Set this to 1 to include "fsdata_custom.c" instead of "fsdata.c" for the /** Set this to 1 to include "fsdata_custom.c" instead of "fsdata.c" for the
* file system (to prevent changing the file included in CVS) */ * file system (to prevent changing the file included in CVS) */
#ifndef HTTPD_USE_CUSTUM_FSDATA #ifndef HTTPD_USE_CUSTOM_FSDATA
#define HTTPD_USE_CUSTUM_FSDATA 0 #define HTTPD_USE_CUSTOM_FSDATA 0
#endif #endif
#if HTTPD_USE_CUSTUM_FSDATA #if HTTPD_USE_CUSTOM_FSDATA
#include "fsdata_custom.c" #include "fsdata_custom.c"
#else /* HTTPD_USE_CUSTUM_FSDATA */ #else /* HTTPD_USE_CUSTOM_FSDATA */
#include "fsdata.c" #include "fsdata.c"
#endif /* HTTPD_USE_CUSTUM_FSDATA */ #endif /* HTTPD_USE_CUSTOM_FSDATA */
/*-----------------------------------------------------------------------------------*/ /*-----------------------------------------------------------------------------------*/
/* Define the number of open files that we can support. */ /* Define the number of open files that we can support. */