]> git.sesse.net Git - vlc/blobdiff - modules/access/avio.c
Update LGPL license blurb, choosing v2.1+.
[vlc] / modules / access / avio.c
index 2063f086e802f85147ff10f1bf6b6568aef8e66f..639e2c20b74ad9aafd03ebe7c7d05205f5876cb8 100644 (file)
@@ -84,8 +84,9 @@ int OpenAvio(vlc_object_t *object)
      */
     char *url;
     if (!strcmp(access->psz_access, "avio"))
-        url = strdup(access->psz_path);
-    else if (asprintf(&url, "%s://%s", access->psz_access, access->psz_path) < 0)
+        url = strdup(access->psz_location);
+    else if (asprintf(&url, "%s://%s", access->psz_access,
+                      access->psz_location) < 0)
         url = NULL;
 
     if (!url)