[xiph-cvs] cvs commit: icecast/src connection.c
Brendan
brendan at xiph.org
Tue Mar 11 21:40:45 PST 2003
brendan 03/03/12 00:40:45
Modified: src connection.c
Log:
Typo (no sleeping between select()s waiting for connections)
Revision Changes Path
1.65 +1 -1 icecast/src/connection.c
Index: connection.c
===================================================================
RCS file: /usr/local/cvsroot/icecast/src/connection.c,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- connection.c 10 Mar 2003 22:20:16 -0000 1.64
+++ connection.c 12 Mar 2003 05:40:45 -0000 1.65
@@ -166,7 +166,7 @@
if(timeout >= 0) {
tv.tv_sec = timeout/1000;
- tv.tv_usec = (timeout % 1000)/1000;
+ tv.tv_usec = (timeout % 1000) * 1000;
p = &tv;
}
<p><p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
More information about the commits
mailing list