summaryrefslogtreecommitdiff
path: root/source3/nsswitch/nss_info.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/nsswitch/nss_info.c')
-rw-r--r--source3/nsswitch/nss_info.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/source3/nsswitch/nss_info.c b/source3/nsswitch/nss_info.c
index 747de4a2ba..0b0caeee02 100644
--- a/source3/nsswitch/nss_info.c
+++ b/source3/nsswitch/nss_info.c
@@ -20,8 +20,6 @@
Boston, MA 02111-1307, USA.
*/
-#ifdef WITH_ADS
-
#include "includes.h"
#include "nss_info.h"
@@ -266,27 +264,3 @@ static BOOL parse_nss_parm( const char *config, char **backend, char **domain )
return NT_STATUS_OK;
}
-/********************************************************************
- Invoke the init function for a given domain's backend
- *******************************************************************/
-
- NTSTATUS idmap_nss_init_domain( const char *domain )
-{
- struct nss_domain_entry *p;
-
- DEBUG(10,("idmap_nss_init_domain: Searching for %s's init() function\n",
- domain));
-
- for ( p=nss_domain_list; p; p=p->next ) {
- if ( strequal( p->domain, domain ) ) {
- DEBUG(10,("idmap_nss_init_domain: Calling init function for %s\n",
- domain));
- return p->backend->methods->init( p );
- }
- }
-
- return NT_STATUS_NO_SUCH_DOMAIN;
-}
-
-#endif /* WITH_ADS */
-