From e1571cc70590929eedce2a6f7ae045f78484435f Mon Sep 17 00:00:00 2001 From: Qball Cow Date: Wed, 28 Nov 2007 14:06:03 +0000 Subject: Re-enable seeking in http streams. Fixing stopping mpd from block when trying to stop a ogg stream that is buffering. git-svn-id: https://svn.musicpd.org/mpd/trunk@7053 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/inputStream_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/inputStream_http.c') diff --git a/src/inputStream_http.c b/src/inputStream_http.c index 71f4a6f45..80b908a2e 100644 --- a/src/inputStream_http.c +++ b/src/inputStream_http.c @@ -558,7 +558,7 @@ static int getHTTPHello(InputStream * inStream) inStream->seekable = 0; rc = atoi(cur + 9); } else if (0 == strncmp(cur, "HTTP/1.1 ", 9)) { - inStream->seekable = 0; + inStream->seekable = 1; rc = atoi(cur + 9); } else if (0 == strncmp(cur, "ICY 200 OK", 10)) { inStream->seekable = 0; -- cgit v1.2.3