Changeset 2067
- Timestamp:
- 01/28/2008 09:28:23 AM (7 months ago)
- Location:
- trunk/src
- Files:
-
- 2 modified
-
http_auth.c (modified) (1 diff)
-
mod_auth.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/http_auth.c
r2062 r2067 55 55 56 56 handler_t auth_ldap_init(server *srv, mod_auth_plugin_config *s); 57 #ifdef USE_LDAP 57 58 void auth_ldap_cleanup(ldap_plugin_config *p); 59 #endif 58 60 59 61 static const char base64_pad = '='; -
trunk/src/mod_auth.c
r2062 r2067 17 17 18 18 handler_t auth_ldap_init(server *srv, mod_auth_plugin_config *s); 19 #ifdef USE_LDAP 19 20 void auth_ldap_cleanup(ldap_plugin_config* p); 21 #endif 20 22 21 23 /** … … 646 648 } 647 649 650 #ifdef USE_LDAP 648 651 void auth_ldap_cleanup(ldap_plugin_config *p) { 649 652 if (p->ldap != NULL) … … 651 654 p->ldap = NULL; 652 655 } 656 #endif 653 657 654 658 LI_EXPORT int mod_auth_plugin_init(plugin *p) {

