diff options
author | foobar <sniper@php.net> | 2001-05-31 21:09:30 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2001-05-31 21:09:30 +0000 |
commit | 334ac7fc94d7bc5469f8e142907c858df1f2c6f7 (patch) | |
tree | e03bcf0eb273c1017203f5222ee842f936cfc3b4 /ext/ldap/php_ldap.h | |
parent | 77a1968ca5d58645d18c26e9f612d2b1901bc6d5 (diff) | |
download | php-git-334ac7fc94d7bc5469f8e142907c858df1f2c6f7.tar.gz |
- Cleaned up some whitespace (sorry, I should have committed that before
any other changes)
- Made use of the Zend resource macros
Diffstat (limited to 'ext/ldap/php_ldap.h')
-rw-r--r-- | ext/ldap/php_ldap.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ext/ldap/php_ldap.h b/ext/ldap/php_ldap.h index 33de00b323..b35df480ff 100644 --- a/ext/ldap/php_ldap.h +++ b/ext/ldap/php_ldap.h @@ -52,9 +52,6 @@ PHP_FUNCTION(ldap_count_entries); PHP_FUNCTION(ldap_first_entry); PHP_FUNCTION(ldap_next_entry); PHP_FUNCTION(ldap_get_entries); -#if 0 -PHP_FUNCTION(ldap_free_entry); -#endif PHP_FUNCTION(ldap_first_attribute); PHP_FUNCTION(ldap_next_attribute); PHP_FUNCTION(ldap_get_attributes); @@ -98,7 +95,8 @@ PHP_FUNCTION(ldap_8859_to_t61); ZEND_BEGIN_MODULE_GLOBALS(ldap) long default_link; - long num_links, max_links; + long num_links; + long max_links; char *base_dn; ZEND_END_MODULE_GLOBALS(ldap) |