diff options
author | Martin Kraemer <martin@php.net> | 2001-06-01 12:58:41 +0000 |
---|---|---|
committer | Martin Kraemer <martin@php.net> | 2001-06-01 12:58:41 +0000 |
commit | f2002d3e41b42fccd53ce93a7b027fb7ca5edeb5 (patch) | |
tree | 218cbbab525f442ccd751ea060fd4dd46d26d82c /sapi/apache | |
parent | cbe4d10a686f72508fca3e800af616126d716816 (diff) | |
download | php-git-f2002d3e41b42fccd53ce93a7b027fb7ca5edeb5.tar.gz |
Oops, sorry. I should not have committed this ebcdic fix (which was none)
Diffstat (limited to 'sapi/apache')
-rw-r--r-- | sapi/apache/mod_php4.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sapi/apache/mod_php4.c b/sapi/apache/mod_php4.c index 204ddc1010..1e79701d0f 100644 --- a/sapi/apache/mod_php4.c +++ b/sapi/apache/mod_php4.c @@ -400,9 +400,6 @@ static void init_request_info(SLS_D) /* && !auth_type(r) */ && !strcasecmp(getword(r->pool, &authorization, ' '), "Basic")) { tmp = uudecode(r->pool, authorization); -#ifdef CHARSET_EBCDIC - ascii2ebcdic(tmp,tmp,strlen(tmp)); -#endif SG(request_info).auth_user = getword_nulls_nc(r->pool, &tmp, ':'); if (SG(request_info).auth_user) { r->connection->user = pstrdup(r->connection->pool,SG(request_info).auth_user); |