]> git.sesse.net Git - vlc/commitdiff
livehttp: add missing , to EXTINF after duration
authorIlkka Ollakka <ileoo@videolan.org>
Sun, 19 Sep 2010 20:36:53 +0000 (23:36 +0300)
committerIlkka Ollakka <ileoo@videolan.org>
Sun, 19 Sep 2010 20:36:53 +0000 (23:36 +0300)
modules/access_output/livehttp.c

index 805a6c58121c278812f3c41dc3a755d13eadb8d5..10e3908790dc071a85bebb2f02c017dfbadbe502 100644 (file)
@@ -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 )
             {