aboutsummaryrefslogtreecommitdiff
path: root/Projects/Webserver/Lib/HTTPServerApp.c
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-02-02 12:51:05 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-02-02 12:51:05 +0000
commit1a1f7367b5b7b4c99be17ca069af95e3c2082ccb (patch)
tree22c4f596fcfc35d689d3a5665f1602db9fc66261 /Projects/Webserver/Lib/HTTPServerApp.c
parented56540e3eb1d4936749cd11ef7ac0bec2c25b6e (diff)
Replace the Webserver demo's uIP with the latest code ripped from the Contiki project by Adam Dunkels.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1100 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Projects/Webserver/Lib/HTTPServerApp.c')
-rw-r--r--Projects/Webserver/Lib/HTTPServerApp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/Webserver/Lib/HTTPServerApp.c b/Projects/Webserver/Lib/HTTPServerApp.c
index ed0be7b4..4c122712 100644
--- a/Projects/Webserver/Lib/HTTPServerApp.c
+++ b/Projects/Webserver/Lib/HTTPServerApp.c
@@ -59,7 +59,7 @@ char PROGMEM HTTP404Header[] = "HTTP/1.1 404 Not Found\r\n"
/** Default MIME type sent if no other MIME type can be determined */
char PROGMEM DefaultMIMEType[] = "text/plain";
-/** List of MIME types for each supported file extension - must be terminated with \ref END_OF_MIME_LIST entry. */
+/** List of MIME types for each supported file extension. */
MIME_Type_t PROGMEM MIMETypes[] =
{
{.Extension = "htm", .MIMEType = "text/html"},