|
|
@ -395,7 +395,7 @@ static void init_request_info(TSRMLS_D) |
|
|
authorization = table_get(r->headers_in, "Authorization"); |
|
|
authorization = table_get(r->headers_in, "Authorization"); |
|
|
} |
|
|
} |
|
|
if (authorization |
|
|
if (authorization |
|
|
&& !auth_type(r) |
|
|
|
|
|
|
|
|
/* && !auth_type(r) */ |
|
|
&& !strcasecmp(getword(r->pool, &authorization, ' '), "Basic")) { |
|
|
&& !strcasecmp(getword(r->pool, &authorization, ' '), "Basic")) { |
|
|
tmp = uudecode(r->pool, authorization); |
|
|
tmp = uudecode(r->pool, authorization); |
|
|
SG(request_info).auth_user = getword_nulls_nc(r->pool, &tmp, ':'); |
|
|
SG(request_info).auth_user = getword_nulls_nc(r->pool, &tmp, ':'); |
|
|
|