summaryrefslogtreecommitdiff
path: root/ext/com_dotnet/com_saproxy.c
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-03-08 21:17:39 +0000
committerMarcus Boerger <helly@php.net>2004-03-08 21:17:39 +0000
commit7dd5b1f126356ba8f47fcc859939b59f49b08ad9 (patch)
tree486cc7505a2da910f585242772374eac4f75b541 /ext/com_dotnet/com_saproxy.c
parent979ef59b7c720a4c9cc86a9c041b2aaa096cfe6c (diff)
downloadphp-git-7dd5b1f126356ba8f47fcc859939b59f49b08ad9.tar.gz
Rename hasMore() to valid() as discussed. (Part V)
Diffstat (limited to 'ext/com_dotnet/com_saproxy.c')
-rw-r--r--ext/com_dotnet/com_saproxy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/com_dotnet/com_saproxy.c b/ext/com_dotnet/com_saproxy.c
index 78e9f622ed..596a8e359c 100644
--- a/ext/com_dotnet/com_saproxy.c
+++ b/ext/com_dotnet/com_saproxy.c
@@ -331,7 +331,7 @@ static void saproxy_iter_dtor(zend_object_iterator *iter TSRMLS_DC)
efree(I);
}
-static int saproxy_iter_has_more(zend_object_iterator *iter TSRMLS_DC)
+static int saproxy_iter_valid(zend_object_iterator *iter TSRMLS_DC)
{
php_com_saproxy_iter *I = (php_com_saproxy_iter*)iter->data;
@@ -396,7 +396,7 @@ static int saproxy_iter_move_forwards(zend_object_iterator *iter TSRMLS_DC)
static zend_object_iterator_funcs saproxy_iter_funcs = {
saproxy_iter_dtor,
- saproxy_iter_has_more,
+ saproxy_iter_valid,
saproxy_iter_get_data,
saproxy_iter_get_key,
saproxy_iter_move_forwards,