something here, but if a mod_auth_* module declines, the type is
still set. So, we need a check to see if there have been a
non-declined auth hook previously for this request. I will ponder
a good approach to this.
authorization = table_get(r->headers_in, "Authorization");
}
if (authorization
- && !auth_type(r)
+/* && !auth_type(r) */
&& !strcmp(getword(r->pool, &authorization, ' '), "Basic")) {
tmp = uudecode(r->pool, authorization);
SG(request_info).auth_user = getword_nulls_nc(r->pool, &tmp, ':');