Mercurial > audlegacy
changeset 4059:2082537138d0
Use vfs_is_remote() instead of is_http().
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Mon, 03 Dec 2007 09:54:19 -0600 |
parents | 0191b9b4dd35 |
children | 21833104ed4c 450581e58761 |
files | src/audacious/playlist.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/audacious/playlist.c Mon Dec 03 02:36:52 2007 +0300 +++ b/src/audacious/playlist.c Mon Dec 03 09:54:19 2007 -0600 @@ -1702,7 +1702,7 @@ { Tuple *tuple; - if (is_http(filename_p)) { + if (vfs_is_remote(filename_p)) { tuple = tuple_new(); tuple_associate_string(tuple, FIELD_FILE_NAME, NULL, filename_p); } else {