summaryrefslogtreecommitdiffstats
path: root/network.c
diff options
context:
space:
mode:
Diffstat (limited to 'network.c')
-rw-r--r--network.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/network.c b/network.c
index e3fbd7a861..45299b8e4d 100644
--- a/network.c
+++ b/network.c
@@ -474,7 +474,7 @@ network_streaming(void *arg) {
ret = select( streaming_ctrl->fd_net+1, &fd_net_in, NULL, NULL, NULL );
if( ret<0 ) {
perror("select");
- exit(1);
+ return; //exit(1); // FIXME!
}
if( FD_ISSET( streaming_ctrl->fd_net, &fd_net_in ) ) {
ret = readFromServer( streaming_ctrl->fd_net, buffer, BUFFER_SIZE );