diff options
author | Jan Lehnardt <jan@php.net> | 2002-09-14 12:09:47 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@php.net> | 2002-09-14 12:09:47 +0000 |
commit | 53b062387800dabf78bb06fd7b921b1325b3b846 (patch) | |
tree | be3d00da5c7557ba936dc9439186546def56e233 | |
parent | 288e9b1793302b2ad98dc84553fa6fa6c5335033 (diff) | |
download | php-git-53b062387800dabf78bb06fd7b921b1325b3b846.tar.gz |
- fix typo in comment
-rw-r--r-- | ext/standard/http_fopen_wrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/http_fopen_wrapper.c b/ext/standard/http_fopen_wrapper.c index a5ed56ba5d..82cffcf8ec 100644 --- a/ext/standard/http_fopen_wrapper.c +++ b/ext/standard/http_fopen_wrapper.c @@ -164,7 +164,7 @@ php_stream *php_stream_url_wrap_http(php_stream_wrapper *wrapper, char *path, ch /* send it */ php_stream_write(stream, scratch, strlen(scratch)); - /* authz header if it was specified */ + /* auth header if it was specified */ if (resource->user && resource->pass) { /* decode the strings first */ php_url_decode(resource->user, strlen(resource->user)); |