diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-03-15 08:13:35 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2006-03-15 08:13:35 +0000 |
commit | 89fc5da5d91a00d1b2b59f5e0056babcd678fbeb (patch) | |
tree | cc45e7d12db409f4eb1197a7934459d9224d7b5f | |
parent | 7e1bb85c1a57df528b8a724d11b8af66aa592162 (diff) | |
download | mpd-89fc5da5d91a00d1b2b59f5e0056babcd678fbeb.tar.gz mpd-89fc5da5d91a00d1b2b59f5e0056babcd678fbeb.tar.xz mpd-89fc5da5d91a00d1b2b59f5e0056babcd678fbeb.zip |
inputStream_http.c: speling fikcses
git-svn-id: https://svn.musicpd.org/mpd/trunk@3921 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | src/inputStream_http.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/inputStream_http.c b/src/inputStream_http.c index dbb6d82d3..34303dfab 100644 --- a/src/inputStream_http.c +++ b/src/inputStream_http.c @@ -100,7 +100,7 @@ void inputStream_initHttp() { param = getConfigParam(CONF_HTTP_PROXY_PASSWORD); if(!param) { - ERROR("%s specifid but not %s\n", + ERROR("%s specified but not %s\n", CONF_HTTP_PROXY_USER, CONF_HTTP_PROXY_PASSWORD); exit(EXIT_FAILURE); @@ -112,7 +112,7 @@ void inputStream_initHttp() { param = getConfigParam(CONF_HTTP_PROXY_PASSWORD); if(param) { - ERROR("%s specifid but not %s\n", + ERROR("%s specified but not %s\n", CONF_HTTP_PROXY_PASSWORD, CONF_HTTP_PROXY_USER); exit(EXIT_FAILURE); } @@ -143,7 +143,7 @@ void inputStream_initHttp() { if(bufferSize <= 0 || *test != '\0') { ERROR("\"%s\" specified for %s at line %i is not a " - "positivie intenger\n", + "positive integer\n", param->value, CONF_HTTP_BUFFER_SIZE, param->line); exit(EXIT_FAILURE); @@ -161,7 +161,7 @@ void inputStream_initHttp() { if(prebufferSize <= 0 || *test != '\0') { ERROR("\"%s\" specified for %s at line %i is not a " - "positivie intenger\n", + "positive integer\n", param->value, CONF_HTTP_PREBUFFER_SIZE, param->line); exit(EXIT_FAILURE); |