summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-12-11 22:38:38 +0000
committerfoobar <sniper@php.net>2005-12-11 22:38:38 +0000
commitddcc5257ac3b077f27bb3888f252ebfdcbdbfaa7 (patch)
tree0b55264aab14b6951c608d3ad524e0af5ea3e8d1
parentf19c2e00ec00683388c3181de35050ae4e37aab0 (diff)
downloadphp-git-ddcc5257ac3b077f27bb3888f252ebfdcbdbfaa7.tar.gz
MFH: - Added missing fold tags
-rw-r--r--ext/ldap/ldap.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/ldap/ldap.c b/ext/ldap/ldap.c
index 8a388489f5..d83c35bdc3 100644
--- a/ext/ldap/ldap.c
+++ b/ext/ldap/ldap.c
@@ -525,8 +525,9 @@ static php_ldap_bictx *_php_sasl_setdefs(LDAP *ld, char *sasl_mech, char *sasl_r
return ctx;
}
+/* }}} */
-/* {{{ _php_sasl_setdefs
+/* {{{ _php_sasl_freedefs
*/
static void _php_sasl_freedefs(php_ldap_bictx *ctx)
{
@@ -537,6 +538,7 @@ static void _php_sasl_freedefs(php_ldap_bictx *ctx)
if (ctx->authzid) ber_memfree(ctx->authzid);
ber_memfree(ctx);
}
+/* }}} */
/* {{{ _php_sasl_interact
Internal interact function for SASL */
@@ -569,6 +571,7 @@ static int _php_sasl_interact(LDAP *ld, unsigned flags, void *defaults, void *in
}
return LDAP_SUCCESS;
}
+/* }}} */
/* {{{ proto bool ldap_sasl_bind(resource link [, string binddn, string password, string sasl_mech, string sasl_realm, string sasl_authz_id, string props])
Bind to LDAP directory using SASL */