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.c8
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);