1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-22 04:15:54 -04:00

Typo (no sleeping between select()s waiting for connections)

svn path=/trunk/icecast/; revision=4478
This commit is contained in:
brendan 2003-03-12 05:40:45 +00:00
parent a3268b8d2f
commit 1198cbb982

View File

@ -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;
}