From 4aafdfd2802d21852e28a16564d27a06bd47e487 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 3 Jul 2014 08:12:45 -0600 Subject: [PATCH] Fixes to errors that I introduced from Pelle Winderstam --- include/netutils/httpd.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/netutils/httpd.h b/include/netutils/httpd.h index e18542df1..d14b6bf4d 100644 --- a/include/netutils/httpd.h +++ b/include/netutils/httpd.h @@ -88,14 +88,14 @@ # define CONFIG_NETUTILS_HTTPD_MAXPATH PATH_MAX #endif -#define HTTPD_MAX_FILENAME CONFIG_HTTPD_MAXPATH +#define HTTPD_MAX_FILENAME CONFIG_NETUTILS_HTTPD_MAXPATH /* Other tunable values. If you need to change these values, please create * new configurations in apps/netutils/webserver/Kconfig */ -#defien HTTPD_MAX_CONTENTLEN 32 -#defien HTTPD_MAX_HEADERLEN 180 +#define HTTPD_MAX_CONTENTLEN 32 +#define HTTPD_MAX_HEADERLEN 180 /**************************************************************************** * Public types