]> git.sesse.net Git - vlc/commitdiff
playlist: use a valid extension for Media Library ("xspf")
authorRafaël Carré <funman@videolan.org>
Fri, 12 Oct 2007 16:42:50 +0000 (16:42 +0000)
committerRafaël Carré <funman@videolan.org>
Fri, 12 Oct 2007 16:42:50 +0000 (16:42 +0000)
src/playlist/loadsave.c

index e4a327c5b7fb760ae6d7c7faa6a7e10e6ec77fd3..655bea32007e980024d18081cc3d6914e852b465 100644 (file)
@@ -119,7 +119,7 @@ int playlist_MLLoad( playlist_t *p_playlist )
         return VLC_EGENERIC;
     }
 
-    if( asprintf( &psz_uri, "%s" DIR_SEP "ml.xsp", psz_datadir ) == -1 )
+    if( asprintf( &psz_uri, "%s" DIR_SEP "ml.xspf", psz_datadir ) == -1 )
     {
         psz_uri = NULL;
         goto error;
@@ -133,7 +133,7 @@ int playlist_MLLoad( playlist_t *p_playlist )
     }
     free( psz_uri );
 
-    if( asprintf( &psz_uri, "file/xspf-open://%s" DIR_SEP "ml.xsp",
+    if( asprintf( &psz_uri, "file/xspf-open://%s" DIR_SEP "ml.xspf",
                   psz_datadir ) == -1 )
     {
         psz_uri = NULL;
@@ -181,14 +181,14 @@ int playlist_MLDump( playlist_t *p_playlist )
     }
 
     char psz_dirname[ strlen( psz_datadir )
-                      + sizeof( DIR_SEP "ml.xsl")];
+                      + sizeof( DIR_SEP "ml.xspf")];
     sprintf( psz_dirname, "%s", psz_datadir );
     if( config_CreateDir( (vlc_object_t *)p_playlist, psz_dirname ) )
     {
         return VLC_EGENERIC;
     }
 
-    strcat( psz_dirname, DIR_SEP "ml.xsp" );
+    strcat( psz_dirname, DIR_SEP "ml.xspf" );
 
     stats_TimerStart( p_playlist, "ML Dump", STATS_TIMER_ML_DUMP );
     playlist_Export( p_playlist, psz_dirname, p_playlist->p_ml_category,