From 437c75abcbfb209d4f91b2c36a6bfd77afb16d69 Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=B4me=20Chilliet?= Date: Thu, 7 Sep 2017 11:39:46 +0200 Subject: [PATCH] Fixed prototypes in comments --- ext/ldap/ldap.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ext/ldap/ldap.c b/ext/ldap/ldap.c index 2bff9febcd..d4118ac5f3 100644 --- a/ext/ldap/ldap.c +++ b/ext/ldap/ldap.c @@ -1951,7 +1951,7 @@ cleanup: } /* }}} */ -/* {{{ proto bool ldap_add(resource link, string dn, array entry) +/* {{{ proto bool ldap_add(resource link, string dn, array entry [, array servercontrols [, array clientcontrols]]) Add entries to LDAP directory */ PHP_FUNCTION(ldap_add) { @@ -1962,7 +1962,7 @@ PHP_FUNCTION(ldap_add) /* three functions for attribute base modifications, gerrit Thomson */ -/* {{{ proto bool ldap_mod_replace(resource link, string dn, array entry) +/* {{{ proto bool ldap_mod_replace(resource link, string dn, array entry [, array servercontrols [, array clientcontrols]]) Replace attribute values with new ones */ PHP_FUNCTION(ldap_mod_replace) { @@ -1970,7 +1970,7 @@ PHP_FUNCTION(ldap_mod_replace) } /* }}} */ -/* {{{ proto bool ldap_mod_add(resource link, string dn, array entry) +/* {{{ proto bool ldap_mod_add(resource link, string dn, array entry [, array servercontrols [, array clientcontrols]]) Add attribute values to current */ PHP_FUNCTION(ldap_mod_add) { @@ -1978,7 +1978,7 @@ PHP_FUNCTION(ldap_mod_add) } /* }}} */ -/* {{{ proto bool ldap_mod_del(resource link, string dn, array entry) +/* {{{ proto bool ldap_mod_del(resource link, string dn, array entry [, array servercontrols [, array clientcontrols]]) Delete attribute values */ PHP_FUNCTION(ldap_mod_del) { -- 2.40.0