changeset 1017:2f0b7056f354 trunk

[svn] - returning -1 is invalid here for fsize(). make metadata display in Audacious.
author nenolod
date Fri, 11 May 2007 09:41:34 -0700
parents 77153fae50e3
children 3484d9da7f7c
files ChangeLog src/lastfm/lastfm.c
diffstat 2 files changed, 9 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri May 11 09:37:33 2007 -0700
+++ b/ChangeLog	Fri May 11 09:41:34 2007 -0700
@@ -1,3 +1,11 @@
+2007-05-11 16:37:33 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
+  revision [2196]
+  - don't report content-length
+  
+  trunk/src/lastfm/lastfm.c |    9 +++------
+  1 file changed, 3 insertions(+), 6 deletions(-)
+
+
 2007-05-11 16:32:54 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
   revision [2194]
   - make this work without controlsocket
--- a/src/lastfm/lastfm.c	Fri May 11 09:37:33 2007 -0700
+++ b/src/lastfm/lastfm.c	Fri May 11 09:41:34 2007 -0700
@@ -356,7 +356,7 @@
 
 off_t lastfm_vfs_fsize_impl(VFSFile * file)
 {
-	return -1;
+	return 0;
 }
 
 gchar *lastfm_vfs_metadata_impl(VFSFile * file, const gchar * field)