# HG changeset patch # User rosfran # Date 1176842880 -3600 # Node ID bfe33d404df5ae4e9a1f16718d9424e44108998d # Parent ff0d0ede90de38974474d704f2f501b22a4b6801 [svn r568] Solves problem with the set_timeout call. diff -r ff0d0ede90de -r bfe33d404df5 gmyth/src/gmyth_common.c --- a/gmyth/src/gmyth_common.c Tue Apr 17 21:33:01 2007 +0100 +++ b/gmyth/src/gmyth_common.c Tue Apr 17 21:48:00 2007 +0100 @@ -69,7 +69,6 @@ g_list_free (list); } -#ifdef GMYTH_USE_DEBUG /** * Prints the channel info to the standard output. The gmyth debug must be enabled. * @param channel_info the GMythChannelInfo instance @@ -106,7 +105,6 @@ program_info->pathname ? program_info->pathname->str : NULL, program_info->filesize ); } -#endif static void free_channel_data (gpointer data, gpointer user_data) diff -r ff0d0ede90de -r bfe33d404df5 gmyth/src/gmyth_common.h --- a/gmyth/src/gmyth_common.h Tue Apr 17 21:33:01 2007 +0100 +++ b/gmyth/src/gmyth_common.h Tue Apr 17 21:48:00 2007 +0100 @@ -54,10 +54,8 @@ void gmyth_free_channel_list(GList *list); void gmyth_free_program_list(GList *list); -#ifdef GMYTH_USE_DEBUG void gmyth_channel_info_print (GMythChannelInfo *channel_info); void gmyth_program_info_print (GMythProgramInfo *program_info); -#endif G_END_DECLS diff -r ff0d0ede90de -r bfe33d404df5 gmyth/src/gmyth_livetv.c --- a/gmyth/src/gmyth_livetv.c Tue Apr 17 21:33:01 2007 +0100 +++ b/gmyth/src/gmyth_livetv.c Tue Apr 17 21:48:00 2007 +0100 @@ -787,7 +787,7 @@ else { livetv->file = GMYTH_FILE( gmyth_file_transfer_new( livetv->backend_info ) ); - gmyth_file_transfer_settimeout( GMYTH_FILE_TRANSFER(livetv->file), TRUE ); + //gmyth_file_transfer_settimeout( GMYTH_FILE_TRANSFER(livetv->file), TRUE ); } if ( NULL == livetv->file )