aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputStream_http.c
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-03-18 04:01:37 +0000
committerEric Wong <normalperson@yhbt.net>2006-03-18 04:01:37 +0000
commit0e793b510a2a61759cccf4caa38d9651eae1018b (patch)
treefd23fef78584a66ca6852895ecbd827ab8de68ab /src/inputStream_http.c
parent17d3ccbaa3f22c4c0f8a86515d71fc017a451bbd (diff)
downloadmpd-svn/oggflac.tar.gz
mpd-svn/oggflac.tar.xz
mpd-svn/oggflac.zip
merge up to r3928, branch should be closeable unless there aresvn/oggflac
major issues that need to be addressed. git-svn-id: https://svn.musicpd.org/mpd/branches/oggflac@3929 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/inputStream_http.c')
-rw-r--r--src/inputStream_http.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/inputStream_http.c b/src/inputStream_http.c
index d3303eb87..9781b1b7a 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);