sniper Sun Dec 11 22:38:38 2005 EDT Modified files: (Branch: PHP_5_1) /php-src/ext/ldap ldap.c Log: MFH: - Added missing fold tags http://cvs.php.net/viewcvs.cgi/php-src/ext/ldap/ldap.c?r1=1.161.2.1&r2=1.161.2.2&diff_format=u Index: php-src/ext/ldap/ldap.c diff -u php-src/ext/ldap/ldap.c:1.161.2.1 php-src/ext/ldap/ldap.c:1.161.2.2 --- php-src/ext/ldap/ldap.c:1.161.2.1 Tue Dec 6 02:25:24 2005 +++ php-src/ext/ldap/ldap.c Sun Dec 11 22:38:38 2005 @@ -22,7 +22,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: ldap.c,v 1.161.2.1 2005/12/06 02:25:24 sniper Exp $ */ +/* $Id: ldap.c,v 1.161.2.2 2005/12/11 22:38:38 sniper Exp $ */ #define IS_EXT_MODULE #ifdef HAVE_CONFIG_H @@ -314,7 +314,7 @@ php_info_print_table_start(); php_info_print_table_row(2, "LDAP Support", "enabled"); - php_info_print_table_row(2, "RCS Version", "$Id: ldap.c,v 1.161.2.1 2005/12/06 02:25:24 sniper Exp $"); + php_info_print_table_row(2, "RCS Version", "$Id: ldap.c,v 1.161.2.2 2005/12/11 22:38:38 sniper Exp $"); if (LDAPG(max_links) == -1) { snprintf(tmp, 31, "%ld/unlimited", LDAPG(num_links)); @@ -525,8 +525,9 @@ return ctx; } +/* }}} */ -/* {{{ _php_sasl_setdefs +/* {{{ _php_sasl_freedefs */ static void _php_sasl_freedefs(php_ldap_bictx *ctx) { @@ -537,6 +538,7 @@ if (ctx->authzid) ber_memfree(ctx->authzid); ber_memfree(ctx); } +/* }}} */ /* {{{ _php_sasl_interact Internal interact function for SASL */ @@ -569,6 +571,7 @@ } 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 */
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php