summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2007-01-19 00:17:44 +0000
committerSVN Migration <svn@php.net>2007-01-19 00:17:44 +0000
commitb9c3626055850023f7a0a0bc3b92ed8f773b078a (patch)
treee8a36dd55731bb71895ae6c8d220922d0c0214e9 /ext
parentcbd3a641363a17dc8897e70e80c4829ae660e921 (diff)
downloadphp-git-php-5.2.1RC3.tar.gz
This commit was manufactured by cvs2svn to create tag 'php_5_2_1RC3'.php-5.2.1RC3
Diffstat (limited to 'ext')
-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 7adc56e98a..c43aced2cb 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_ex(php_stream_wrapper *wrapper, char *path,
SEPARATE_ZVAL(tmpzval);
convert_to_double_ex(tmpzval);
timeout.tv_sec = (time_t) Z_DVAL_PP(tmpzval);
- timeout.tv_usec = (suseconds_t) ((Z_DVAL_PP(tmpzval) - timeout.tv_sec) * 1000000);
+ timeout.tv_usec = (size_t) ((Z_DVAL_PP(tmpzval) - timeout.tv_sec) * 1000000);
} else {
timeout.tv_sec = FG(default_socket_timeout);
timeout.tv_usec = 0;