aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputStream_http.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/inputStream_http.c')
-rw-r--r--src/inputStream_http.c26
1 files changed, 14 insertions, 12 deletions
diff --git a/src/inputStream_http.c b/src/inputStream_http.c
index 8acc106d8..ca5c73a7c 100644
--- a/src/inputStream_http.c
+++ b/src/inputStream_http.c
@@ -465,18 +465,20 @@ static int finishHTTPInit(InputStream * inStream)
/* deal with ICY metadata later, for now its fucking up stuff! */
length = snprintf(request, sizeof(request),
- "GET %s HTTP/1.1\r\n" "Host: %s\r\n"
- /*"Connection: close\r\n" */
- "User-Agent: %s/%s\r\n"
- "Range: bytes=%ld-\r\n"
- "%s" /* authorization */
- "Icy-Metadata:1\r\n"
- "\r\n",
- data->path, data->host,
- PACKAGE_NAME, PACKAGE_VERSION,
- inStream->offset,
- data->proxyAuth ? data->proxyAuth :
- (data->httpAuth ? data->httpAuth : ""));
+ "GET %s HTTP/1.1\r\n"
+ "Host: %s\r\n"
+ /* "Connection: close\r\n" */
+ "User-Agent: %s/%s\r\n"
+ "Range: bytes=%ld-\r\n"
+ "%s" /* authorization */
+ "Icy-Metadata:1\r\n"
+ "\r\n",
+ data->path,
+ data->host,
+ PACKAGE_NAME, PACKAGE_VERSION,
+ inStream->offset,
+ data->proxyAuth ? data->proxyAuth :
+ (data->httpAuth ? data->httpAuth : ""));
if (length >= sizeof(request))
goto close_err;