# HG changeset patch # User William Pitcock # Date 1196697259 21600 # Node ID 2082537138d023ec136ffc0aa47eb5c00b2361d4 # Parent 0191b9b4dd35e5d52d26a61662194555e7fa3496 Use vfs_is_remote() instead of is_http(). diff -r 0191b9b4dd35 -r 2082537138d0 src/audacious/playlist.c --- 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 {