]> git.sesse.net Git - vlc/blobdiff - modules/access_output/file.c
utf8_* -> vlc_* (sed roxxors)
[vlc] / modules / access_output / file.c
index 84aad89da637895dad68d266f16bcdd646249e4d..73bd8d5c741cf873fc1f0aaf5e87e9dc3f2f1c0e 100644 (file)
@@ -131,7 +131,7 @@ static int Open( vlc_object_t *p_this )
         char *psz_tmp = str_format( p_access, p_access->psz_path );
         path_sanitize( psz_tmp );
 
-        fd = utf8_open( psz_tmp, O_RDWR | O_CREAT | O_LARGEFILE |
+        fd = vlc_open( psz_tmp, O_RDWR | O_CREAT | O_LARGEFILE |
                         (append ? 0 : O_TRUNC), 0666 );
         free( psz_tmp );
     }