]> git.sesse.net Git - vlc/blobdiff - modules/access/directory.c
Use var_InheritString for --decklink-video-connection.
[vlc] / modules / access / directory.c
index 782103bdbcb178a63d0cec88311177af82fdefbe..b778cf0e252ff37cac3c064a0a556c3092462a77 100644 (file)
@@ -46,9 +46,6 @@
 #   include <io.h>
 #endif
 
-#ifdef HAVE_DIRENT_H
-#   include <dirent.h>
-#endif
 #ifdef __sun__
 static inline int dirfd (DIR *dir)
 {
@@ -118,11 +115,11 @@ int DirInit (access_t *p_access, DIR *handle)
     char *uri;
     if (!strcmp (p_access->psz_access, "fd"))
     {
-        if (asprintf (&uri, "fd://%s", p_access->psz_path) == -1)
+        if (asprintf (&uri, "fd://%s", p_access->psz_location) == -1)
             uri = NULL;
     }
     else
-        uri = make_URI (p_access->psz_filepath);
+        uri = make_URI (p_access->psz_filepath, "file");
     if (unlikely(uri == NULL))
         goto error;