summaryrefslogtreecommitdiff
path: root/ext/soap/php_http.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-08-19 13:49:48 +0200
committerAnatol Belski <ab@php.net>2014-08-19 13:49:48 +0200
commit094441f1029c6d3e7a4baca664045e9be66bd9b8 (patch)
tree6adc5f5a47de7a6430c98c4dd9eb581ecb4ac74e /ext/soap/php_http.c
parent2da1c805ecd73751eee422d2e995fe416ff563c5 (diff)
downloadphp-git-094441f1029c6d3e7a4baca664045e9be66bd9b8.tar.gz
ported ext/soap
Diffstat (limited to 'ext/soap/php_http.c')
-rw-r--r--ext/soap/php_http.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/soap/php_http.c b/ext/soap/php_http.c
index 4ad824ae41..0935ce36ad 100644
--- a/ext/soap/php_http.c
+++ b/ext/soap/php_http.c
@@ -161,7 +161,7 @@ static php_stream* http_connect(zval* this_ptr, php_url *phpurl, int use_ssl, ph
char *host;
char *name;
char *protocol;
- long namelen;
+ php_int_t namelen;
int port;
int old_error_reporting;
struct timeval tv;
@@ -347,7 +347,7 @@ int make_http_soap_request(zval *this_ptr,
int http_1_1;
int http_status;
int content_type_xml = 0;
- long redirect_max = 20;
+ php_int_t redirect_max = 20;
char *content_encoding;
char *http_msg = NULL;
zend_bool old_allow_url_fopen;