Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
Icecast-Server
Commits
a8d602fe
Commit
a8d602fe
authored
Jun 05, 2003
by
Ed "oddsock" Zaleski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed check for regular file type in win32-specific code
svn path=/trunk/icecast/; revision=4879
parent
be325ccd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/connection.c
src/connection.c
+1
-1
No files found.
src/connection.c
View file @
a8d602fe
...
...
@@ -727,7 +727,7 @@ static void _handle_get_request(connection_t *con,
}
else
if
(
fileserve
&&
stat
(
fullpath
,
&
statbuf
)
==
0
&&
#ifdef _WIN32
(
statbuf
.
st_mode
==
S_IFREG
))
(
(
statbuf
.
st_mode
)
&
_
S_IFREG
))
#else
S_ISREG
(
statbuf
.
st_mode
))
#endif
...
...
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