Commit 89fc5da5 authored by Eric Wong's avatar Eric Wong

inputStream_http.c: speling fikcses

git-svn-id: https://svn.musicpd.org/mpd/trunk@3921 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 7e1bb85c
...@@ -100,7 +100,7 @@ void inputStream_initHttp() { ...@@ -100,7 +100,7 @@ void inputStream_initHttp() {
param = getConfigParam(CONF_HTTP_PROXY_PASSWORD); param = getConfigParam(CONF_HTTP_PROXY_PASSWORD);
if(!param) { if(!param) {
ERROR("%s specifid but not %s\n", ERROR("%s specified but not %s\n",
CONF_HTTP_PROXY_USER, CONF_HTTP_PROXY_USER,
CONF_HTTP_PROXY_PASSWORD); CONF_HTTP_PROXY_PASSWORD);
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
...@@ -112,7 +112,7 @@ void inputStream_initHttp() { ...@@ -112,7 +112,7 @@ void inputStream_initHttp() {
param = getConfigParam(CONF_HTTP_PROXY_PASSWORD); param = getConfigParam(CONF_HTTP_PROXY_PASSWORD);
if(param) { if(param) {
ERROR("%s specifid but not %s\n", ERROR("%s specified but not %s\n",
CONF_HTTP_PROXY_PASSWORD, CONF_HTTP_PROXY_USER); CONF_HTTP_PROXY_PASSWORD, CONF_HTTP_PROXY_USER);
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
...@@ -143,7 +143,7 @@ void inputStream_initHttp() { ...@@ -143,7 +143,7 @@ void inputStream_initHttp() {
if(bufferSize <= 0 || *test != '\0') { if(bufferSize <= 0 || *test != '\0') {
ERROR("\"%s\" specified for %s at line %i is not a " ERROR("\"%s\" specified for %s at line %i is not a "
"positivie intenger\n", "positive integer\n",
param->value, CONF_HTTP_BUFFER_SIZE, param->value, CONF_HTTP_BUFFER_SIZE,
param->line); param->line);
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
...@@ -161,7 +161,7 @@ void inputStream_initHttp() { ...@@ -161,7 +161,7 @@ void inputStream_initHttp() {
if(prebufferSize <= 0 || *test != '\0') { if(prebufferSize <= 0 || *test != '\0') {
ERROR("\"%s\" specified for %s at line %i is not a " ERROR("\"%s\" specified for %s at line %i is not a "
"positivie intenger\n", "positive integer\n",
param->value, CONF_HTTP_PREBUFFER_SIZE, param->value, CONF_HTTP_PREBUFFER_SIZE,
param->line); param->line);
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment