summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2006-09-26 00:02:28 +0000
committerStef Walter <stef@memberwebs.com>2006-09-26 00:02:28 +0000
commit7f826885bd21b5b3a0afdf07ccb07666cbaabae3 (patch)
tree7bf187f593cd600c30a9f3d2d2c7c44f5ea7a4fa
parent79ad23f1b2ddbf68bb751d15d66e5fca175a96bc (diff)
Clearer error message
-rw-r--r--daemon/httpauthd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/httpauthd.c b/daemon/httpauthd.c
index 474af5f..06fc64b 100644
--- a/daemon/httpauthd.c
+++ b/daemon/httpauthd.c
@@ -1048,7 +1048,7 @@ static int httpauth_set(ha_request_t* rq, ha_buffer_t* cbuf, int ofd)
if(value != NULL)
{
- ha_messagex(rq, LOG_ERR, "unknown authentication type: %s", rq->req_args[0]);
+ ha_messagex(rq, LOG_ERR, "unknown authentication handler: %s", rq->req_args[0]);
return httpauth_respond(rq, ofd, HA_SERVER_BADREQ, 0, "Unknown Auth Handler");
}
}