Fix error message if no auth backend was set
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2486 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
parent
4de9dc077a
commit
7f103eab6c
1
NEWS
1
NEWS
|
@ -34,6 +34,7 @@ NEWS
|
|||
* Add '%_' pattern for complete hostname in mod_evhost (fixes #1737)
|
||||
* Add IPv6 support to mod_proxy (fixes #1537)
|
||||
* mod_ssi printenv: print cgi env, add environment vars to cgi env (fixes #1713)
|
||||
* Fix error message if no auth backend was set
|
||||
|
||||
- 1.4.22 - 2009-03-07
|
||||
* Fix wrong lua type for CACHE_MISS/CACHE_HIT in mod_cml (fixes #533)
|
||||
|
|
|
@ -865,7 +865,11 @@ int http_auth_basic_check(server *srv, connection *con, mod_auth_plugin_data *p,
|
|||
buffer_free(username);
|
||||
buffer_free(password);
|
||||
|
||||
log_error_write(srv, __FILE__, __LINE__, "s", "get_password failed");
|
||||
if (AUTH_BACKEND_UNSET == p->conf.auth_backend) {
|
||||
log_error_write(srv, __FILE__, __LINE__, "s", "auth.backend is not set");
|
||||
} else {
|
||||
log_error_write(srv, __FILE__, __LINE__, "s", "get_password failed");
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue