1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00:00

add fallback mime type for css

svn path=/icecast/trunk/icecast/; revision=8154
This commit is contained in:
Karl Heyes 2004-11-01 23:41:58 +00:00
parent a45c4ddb4a
commit 89bffcd104

View File

@ -331,6 +331,8 @@ static char *fserve_content_type(char *path)
return "audio/mpeg";
else if(!strcmp(ext, "html"))
return "text/html";
else if(!strcmp(ext, "css"))
return "text/css";
else if(!strcmp(ext, "txt"))
return "text/plain";
else