constify mimetype list
authorFelix Fietkau <nbd@openwrt.org>
Fri, 4 Jan 2013 15:54:46 +0000 (16:54 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Fri, 4 Jan 2013 15:54:46 +0000 (16:54 +0100)
file.c
mimetypes.h

diff --git a/file.c b/file.c
index 5287748..372696c 100644 (file)
--- a/file.c
+++ b/file.c
@@ -252,7 +252,7 @@ uh_path_lookup(struct client *cl, const char *url)
 
 static const char * uh_file_mime_lookup(const char *path)
 {
-       struct mimetype *m = &uh_mime_types[0];
+       const struct mimetype *m = &uh_mime_types[0];
        const char *e;
 
        while (m->extn) {
index 7fd885c..ad9286a 100644 (file)
@@ -23,7 +23,7 @@ struct mimetype {
        const char *mime;
 };
 
-static struct mimetype uh_mime_types[] = {
+static const struct mimetype uh_mime_types[] = {
 
        { "txt",     "text/plain" },
        { "log",     "text/plain" },