aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/inputStream_http.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/inputStream_http.c b/src/inputStream_http.c
index 2fda41010..dbb6d82d3 100644
--- a/src/inputStream_http.c
+++ b/src/inputStream_http.c
@@ -159,7 +159,7 @@ void inputStream_initHttp() {
if(param) {
prebufferSize = strtol(param->value, &test, 10);
- if(bufferSize <= 0 || *test != '\0') {
+ if(prebufferSize <= 0 || *test != '\0') {
ERROR("\"%s\" specified for %s at line %i is not a "
"positivie intenger\n",
param->value, CONF_HTTP_PREBUFFER_SIZE,
@@ -168,9 +168,9 @@ void inputStream_initHttp() {
}
prebufferSize *= 1024;
-
- if(prebufferSize > bufferSize) bufferSize = prebufferSize;
}
+
+ if(prebufferSize > bufferSize) prebufferSize = bufferSize;
}
/* base64 code taken from xmms */