return HTTP_INTERNAL_SERVER_ERROR;
}
- /* We need an authentication provider. */
- if (!conf->providers) {
- ap_log_rerror(APLOG_MARK, APLOG_ERR,
- 0, r, APLOGNO(02617) "need AuthFormProvider: %s",
- r->uri);
- return HTTP_INTERNAL_SERVER_ERROR;
- }
-
/* We need an authentication realm. */
if (!ap_auth_name(r)) {
ap_log_rerror(APLOG_MARK, APLOG_ERR,
ap_session_get_fn = APR_RETRIEVE_OPTIONAL_FN(ap_session_get);
ap_session_set_fn = APR_RETRIEVE_OPTIONAL_FN(ap_session_set);
if (!ap_session_load_fn || !ap_session_get_fn || !ap_session_set_fn) {
- ap_log_error(APLOG_MARK, APLOG_CRIT, 0, NULL, APLOGNO(02618)
+ ap_log_error(APLOG_MARK, APLOG_CRIT, 0, NULL, APLOGNO()
"You must load mod_session to enable the mod_auth_form "
"functions");
return !OK;
ap_request_insert_filter_fn = APR_RETRIEVE_OPTIONAL_FN(ap_request_insert_filter);
ap_request_remove_filter_fn = APR_RETRIEVE_OPTIONAL_FN(ap_request_remove_filter);
if (!ap_request_insert_filter_fn || !ap_request_remove_filter_fn) {
- ap_log_error(APLOG_MARK, APLOG_CRIT, 0, NULL, APLOGNO(02619)
+ ap_log_error(APLOG_MARK, APLOG_CRIT, 0, NULL, APLOGNO()
"You must load mod_request to enable the mod_auth_form "
"functions");
return !OK;