Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
Icecast-Server
Commits
89bffcd1
Commit
89bffcd1
authored
Nov 01, 2004
by
Karl Heyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add fallback mime type for css
svn path=/icecast/trunk/icecast/; revision=8154
parent
a45c4ddb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
src/fserve.c
src/fserve.c
+2
-0
No files found.
src/fserve.c
View file @
89bffcd1
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment