]> git.sesse.net Git - vlc/commitdiff
* cmml: fix for loading non-file:// URLs on win32
authorAndre Pang <andrep@videolan.org>
Wed, 26 May 2004 02:23:10 +0000 (02:23 +0000)
committerAndre Pang <andrep@videolan.org>
Wed, 26 May 2004 02:23:10 +0000 (02:23 +0000)
modules/codec/cmml/xurl.c

index f43c99e8d43e819109248423f682fb28ad05800e..146802edc7060bfeedc9e65ac221d0d5cc5fe428 100644 (file)
@@ -434,11 +434,7 @@ char *XURL_GetHead( const char *psz_path )
     }
 
     /* append a trailing / */
-#ifdef XURL_WIN32_PATHING
-    streallocat( psz_path_head, "\\" );
-#else
     streallocat( psz_path_head, "/" );
-#endif
 
     return psz_path_head;
 }