1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

[package] uhttpd: properly match mimetype entries which cover the whole filename (#8236)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28160 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow
2011-09-04 10:21:05 +00:00
parent a677ddc38d
commit a5692ac58a
2 changed files with 3 additions and 3 deletions

View File

@@ -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--;