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
27f58c11
Commit
27f58c11
authored
Oct 22, 2007
by
Karl Heyes
Browse files
boundary limit check was wrong, we won't be able to match any of the listen sockets
svn path=/icecast/trunk/icecast/; revision=14030
parent
a26bb500
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cfgfile.c
View file @
27f58c11
...
...
@@ -1097,7 +1097,7 @@ listener_t *config_get_listen_sock (ice_config_t *config, connection_t *con)
global_lock
();
while
(
listener
)
{
if
(
i
<
global
.
server_sockets
)
if
(
i
>=
global
.
server_sockets
)
listener
=
NULL
;
else
{
...
...
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