]> git.sesse.net Git - vlc/blobdiff - modules/access/file.c
utf8_* -> vlc_* (sed roxxors)
[vlc] / modules / access / file.c
index d999a019fd530df9351de11092f88b1641528ce5..f443a7f3418848436d647760a092a28ee1a6f6f5 100644 (file)
@@ -162,7 +162,7 @@ int Open( vlc_object_t *p_this )
     else
     {
         msg_Dbg (p_access, "opening file `%s'", path);
-        fd = utf8_open (path, O_RDONLY | O_NONBLOCK);
+        fd = vlc_open (path, O_RDONLY | O_NONBLOCK);
         if (fd == -1)
         {
             msg_Err (p_access, "cannot open file %s (%m)", path);