| 138 |
char *str = apr_pstrcat(r->pool, AUTHN_PREFIX, |
char *str = apr_pstrcat(r->pool, AUTHN_PREFIX, |
| 139 |
name, |
name, |
| 140 |
NULL); |
NULL); |
| 141 |
int j = 13; |
int j = sizeof(AUTHN_PREFIX)-1; /* string length of "AUTHENTICATE_", excluding the trailing NIL */ |
| 142 |
while (str[j]) { |
while (str[j]) { |
| 143 |
if (!apr_isalnum(str[j])) { |
if (!apr_isalnum(str[j])) { |
| 144 |
str[j] = '_'; |
str[j] = '_'; |
| 222 |
char *str = apr_pstrcat(r->pool, AUTHN_PREFIX, |
char *str = apr_pstrcat(r->pool, AUTHN_PREFIX, |
| 223 |
name, |
name, |
| 224 |
NULL); |
NULL); |
| 225 |
int j = 13; |
int j = sizeof(AUTHN_PREFIX)-1; /* string length of "AUTHENTICATE_", excluding the trailing NIL */ |
| 226 |
while (str[j]) { |
while (str[j]) { |
| 227 |
if (!apr_isalnum(str[j])) { |
if (!apr_isalnum(str[j])) { |
| 228 |
str[j] = '_'; |
str[j] = '_'; |