Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
Icecast-Server
Commits
5890aa4f
Commit
5890aa4f
authored
Dec 30, 2002
by
Michael Smith
Browse files
Fix c++-ism that gcc didn't think to warn me about
svn path=/trunk/icecast/; revision=4176
parent
65c0bfbb
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/connection.c
View file @
5890aa4f
...
...
@@ -577,13 +577,14 @@ static void _handle_get_request(connection_t *con,
INFO0
(
"Client attempted to fetch allstreams.txt with bad password"
);
client_send_401
(
client
);
}
else
{
avl_node
*
node
;
source_t
*
s
;
client
->
respcode
=
200
;
bytes
=
sock_write
(
client
->
con
->
sock
,
"HTTP/1.0 200 OK
\r\n\r\n
"
);
if
(
bytes
>
0
)
client
->
con
->
sent_bytes
=
bytes
;
avl_node
*
node
;
source_t
*
s
;
avl_tree_rlock
(
global
.
source_tree
);
node
=
avl_get_first
(
global
.
source_tree
);
while
(
node
)
{
...
...
Write
Preview
Supports
Markdown
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