diff options
| author | Stig Venaas <venaas@php.net> | 2000-09-05 16:36:56 +0000 |
|---|---|---|
| committer | Stig Venaas <venaas@php.net> | 2000-09-05 16:36:56 +0000 |
| commit | 24633f598727f5e98395ce9271ba56d274016650 (patch) | |
| tree | 2c15a737f87e42c3c1a29455a0c820bbe992f579 /main/fopen_wrappers.c | |
| parent | b83427db64b4598462eea646005506e01154d208 (diff) | |
| download | php-git-24633f598727f5e98395ce9271ba56d274016650.tar.gz | |
renamed hostconnect() to php_hostconnect()
Diffstat (limited to 'main/fopen_wrappers.c')
| -rw-r--r-- | main/fopen_wrappers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/fopen_wrappers.c b/main/fopen_wrappers.c index a9472b68bf..ee59e07933 100644 --- a/main/fopen_wrappers.c +++ b/main/fopen_wrappers.c @@ -496,7 +496,7 @@ static FILE *php_fopen_url_wrap_http(const char *path, char *mode, int options, if (resource->port == 0) resource->port = 80; - *socketd = hostconnect(resource->host, resource->port, SOCK_STREAM, 0); + *socketd = php_hostconnect(resource->host, resource->port, SOCK_STREAM, 0); if (*socketd == -1) { SOCK_FCLOSE(*socketd); *socketd = 0; |
