summaryrefslogtreecommitdiff
path: root/ext/standard/ftp_fopen_wrapper.c
diff options
context:
space:
mode:
authorArd Biesheuvel <abies@php.net>2004-01-25 00:30:50 +0000
committerArd Biesheuvel <abies@php.net>2004-01-25 00:30:50 +0000
commit6b8c40648181eda292df700932f25879fc870f6d (patch)
treefd1af3a4808005a5aefd0cb98678a9571e1ce98f /ext/standard/ftp_fopen_wrapper.c
parent8045b9c6fd7fc15a78b385e83af9995b7c198dad (diff)
downloadphp-git-6b8c40648181eda292df700932f25879fc870f6d.tar.gz
Changed prototypes to allow parsing of string literals and constant strings
Minor CS/WS
Diffstat (limited to 'ext/standard/ftp_fopen_wrapper.c')
-rw-r--r--ext/standard/ftp_fopen_wrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/ftp_fopen_wrapper.c b/ext/standard/ftp_fopen_wrapper.c
index 20cccb469f..533a98c505 100644
--- a/ext/standard/ftp_fopen_wrapper.c
+++ b/ext/standard/ftp_fopen_wrapper.c
@@ -125,7 +125,7 @@ static php_stream *php_ftp_fopen_connect(php_stream_wrapper *wrapper, char *path
char *scratch;
char tmp_line[512];
- resource = php_url_parse((char *) path);
+ resource = php_url_parse(path);
if (resource == NULL || resource->path == NULL)
return NULL;