[svn r409] Fixes read function from GMythFileTransfer to not try to read continuously if it was not LiveTV. trunk
authorrosfran
Thu Mar 08 19:32:21 2007 +0000 (2007-03-08)
branchtrunk
changeset 404c057ae06c14b
parent 403 89cd1cc77cd1
child 405 aff8c0341462
[svn r409] Fixes read function from GMythFileTransfer to not try to read continuously if it was not LiveTV.
gmyth/src/gmyth_file_transfer.c
     1.1 --- a/gmyth/src/gmyth_file_transfer.c	Thu Mar 08 18:39:03 2007 +0000
     1.2 +++ b/gmyth/src/gmyth_file_transfer.c	Thu Mar 08 19:32:21 2007 +0000
     1.3 @@ -640,7 +640,7 @@
     1.4          }
     1.5          g_free (data_buffer);
     1.6        } /* if */
     1.7 -    } else if ( !(transfer->priv != NULL && transfer->priv->livetv != NULL &&
     1.8 +    } else if ( !read_unlimited || !(transfer->priv != NULL && transfer->priv->livetv != NULL &&
     1.9  					transfer->priv->do_next_program_chain) ) {
    1.10      	total_read = GMYTHTV_FILE_TRANSFER_READ_ERROR;
    1.11      	g_object_unref (strlist);