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
1198cbb9
Commit
1198cbb9
authored
Mar 12, 2003
by
brendan
Browse files
Typo (no sleeping between select()s waiting for connections)
svn path=/trunk/icecast/; revision=4478
parent
a3268b8d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/connection.c
View file @
1198cbb9
...
...
@@ -166,7 +166,7 @@ static int wait_for_serversock(int timeout)
if
(
timeout
>=
0
)
{
tv
.
tv_sec
=
timeout
/
1000
;
tv
.
tv_usec
=
(
timeout
%
1000
)
/
1000
;
tv
.
tv_usec
=
(
timeout
%
1000
)
*
1000
;
p
=
&
tv
;
}
...
...
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