mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Typo (no sleeping between select()s waiting for connections)
svn path=/trunk/icecast/; revision=4478
This commit is contained in:
parent
a3268b8d2f
commit
1198cbb982
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user