diff --git a/apps/webserver/httpd-cfs.c b/apps/webserver/httpd-cfs.c index 627f6c086..fb6fb56b3 100644 --- a/apps/webserver/httpd-cfs.c +++ b/apps/webserver/httpd-cfs.c @@ -30,7 +30,7 @@ * * Author: Adam Dunkels * - * $Id: httpd-cfs.c,v 1.25 2010/10/19 18:29:03 adamdunkels Exp $ + * $Id: httpd-cfs.c,v 1.26 2011/01/25 20:13:41 oliverschmidt Exp $ */ #include @@ -115,7 +115,7 @@ PT_THREAD(send_headers(struct httpd_state *s, const char *statushdr)) ptr = strrchr(s->filename, ISO_period); if(ptr == NULL) { ptr = http_content_type_plain; - } else if(strcmp(http_html, ptr) == 0) { + } else if(strcmp(http_htm, ptr) == 0) { ptr = http_content_type_html; } else if(strcmp(http_css, ptr) == 0) { ptr = http_content_type_css;