summaryrefslogtreecommitdiff
path: root/ext/standard/http_fopen_wrapper.c
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2002-09-26 10:17:41 +0000
committerWez Furlong <wez@php.net>2002-09-26 10:17:41 +0000
commit4c2a9c091b2ce50c26ffe1b75ebe1679faa675b5 (patch)
tree1d932fcd0f245b126f22274f9e7794f58de55441 /ext/standard/http_fopen_wrapper.c
parent3a67c677370651d88af59c23a056806c732138c0 (diff)
downloadphp-git-4c2a9c091b2ce50c26ffe1b75ebe1679faa675b5.tar.gz
Remove an unused variable and a now-unused function.
Diffstat (limited to 'ext/standard/http_fopen_wrapper.c')
-rw-r--r--ext/standard/http_fopen_wrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/http_fopen_wrapper.c b/ext/standard/http_fopen_wrapper.c
index 3fb3f82705..ba1858696f 100644
--- a/ext/standard/http_fopen_wrapper.c
+++ b/ext/standard/http_fopen_wrapper.c
@@ -283,7 +283,7 @@ php_stream *php_stream_url_wrap_http(php_stream_wrapper *wrapper, char *path, ch
while (!body && !php_stream_eof(stream)) {
if (php_stream_gets(stream, http_header_line, HTTP_HEADER_BLOCK_SIZE-1) != NULL) {
- char *p, *ws;
+ char *p;
int found_eol = 0;
int http_header_line_length;