diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-09-04 10:21:05 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-09-04 10:21:05 +0000 |
commit | a6c02f8912c17c8c74b5435bdaa8691fff92494c (patch) | |
tree | 17ce8add1def05f0c1badb31fe592fe2faf5704e /package/uhttpd/src | |
parent | f24b8561d492374129465492f6b35a99d5e2016f (diff) | |
download | upstream-a6c02f8912c17c8c74b5435bdaa8691fff92494c.tar.gz upstream-a6c02f8912c17c8c74b5435bdaa8691fff92494c.tar.bz2 upstream-a6c02f8912c17c8c74b5435bdaa8691fff92494c.zip |
uhttpd: properly match mimetype entries which cover the whole filename (#8236)
SVN-Revision: 28160
Diffstat (limited to 'package/uhttpd/src')
-rw-r--r-- | package/uhttpd/src/uhttpd-file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/uhttpd/src/uhttpd-file.c b/package/uhttpd/src/uhttpd-file.c index fda86d7263..816a69124e 100644 --- a/package/uhttpd/src/uhttpd-file.c +++ b/package/uhttpd/src/uhttpd-file.c @@ -1,7 +1,7 @@ /* * uhttpd - Tiny single-threaded httpd - Static file handler * - * Copyright (C) 2010 Jo-Philipp Wich <xm@subsignal.org> + * Copyright (C) 2010-2011 Jo-Philipp Wich <xm@subsignal.org> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -37,7 +37,7 @@ static const char * uh_file_mime_lookup(const char *path) while( e >= path ) { - if( (*e == '.') && !strcasecmp(&e[1], m->extn) ) + if( (*e == '.' || *e == '/') && !strcasecmp(&e[1], m->extn) ) return m->mime; e--; |