X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Faccess_output%2Flivehttp.c;h=10e3908790dc071a85bebb2f02c017dfbadbe502;hb=99b4edcb0aa0a0ce36d10ad2a48375995a2c32ca;hp=1fe61e55ed9b0fd7305323e454fce8f24eb5aa16;hpb=7dcc4328b3a7b78351e057c5ce9d1b6fc9cc97aa;p=vlc diff --git a/modules/access_output/livehttp.c b/modules/access_output/livehttp.c index 1fe61e55ed..10e3908790 100644 --- a/modules/access_output/livehttp.c +++ b/modules/access_output/livehttp.c @@ -72,7 +72,7 @@ static void Close( vlc_object_t * ); #define INDEX_LONGTEXT N_("Path to the index file to create") #define INDEXURL_TEXT N_("Full URL to put in index file") -#define INDEXURL_LONGTEXT N_("Full url to put in index file. "\ +#define INDEXURL_LONGTEXT N_("Full URL to put in index file. "\ "Use #'s to represent segment number") #define DELSEGS_TEXT N_("Delete segments") @@ -275,7 +275,7 @@ static int updateIndexAndDel( sout_access_out_t *p_access, sout_access_out_sys_t fclose( fp ); return -1; } - val = fprintf( fp, "#EXTINF:%zu\n%s\n", p_sys->i_seglen, psz_name ); + val = fprintf( fp, "#EXTINF:%zu,\n%s\n", p_sys->i_seglen, psz_name ); free( psz_name ); if ( val < 0 ) {