summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2007-01-24 14:39:46 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:17:25 -0500
commita31f10c99edd7cb80d62d377c8efead5a4846b40 (patch)
tree54b89f816e1b3b30338a74ca20fdf29749bd9e21 /source3
parent25f1710991b1d39ce057f9210c36cbaf3d1b0517 (diff)
downloadsamba-a31f10c99edd7cb80d62d377c8efead5a4846b40.tar.gz
samba-a31f10c99edd7cb80d62d377c8efead5a4846b40.tar.bz2
samba-a31f10c99edd7cb80d62d377c8efead5a4846b40.zip
r21001: * Use a simple '#define LDAPMessage void' to fix the build
problems in the nss_info interface when HAVE_LDAP is undefined. * Revert previous ifdef HAVE_ADS brakets * Remove an unused init function wrapper. (This used to be commit 2ba353848b6d8d36520e7fd82576653a39c602cd)
Diffstat (limited to 'source3')
-rw-r--r--source3/include/includes.h3
-rw-r--r--source3/include/nss_info.h12
-rw-r--r--source3/nsswitch/nss_info.c26
-rw-r--r--source3/nsswitch/nss_info_template.c9
-rw-r--r--source3/nsswitch/winbindd_ads.c4
5 files changed, 9 insertions, 45 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h
index da390c87ea..84bd90cc27 100644
--- a/source3/include/includes.h
+++ b/source3/include/includes.h
@@ -777,9 +777,6 @@ enum flush_reason_enum {
#ifdef HAVE_LDAP
#include "ads_protos.h"
-#else
-struct _LDAPMessage;
-typedef struct _LDAPMessage *LDAPMessage;
#endif
/* We need this after proto.h to reference GetTimeOfDay(). */
diff --git a/source3/include/nss_info.h b/source3/include/nss_info.h
index 2d7a5682e2..50e5e8182a 100644
--- a/source3/include/nss_info.h
+++ b/source3/include/nss_info.h
@@ -20,11 +20,15 @@
Boston, MA 02111-1307, USA.
*/
-#ifdef WITH_ADS
-
#ifndef _IDMAP_NSS_H
#define _IDMAP_NSS_H
+#ifndef HAVE_LDAP
+# ifndef LDAPMessage
+# define LDAPMessage void
+# endif
+#endif
+
/* The interface version specifier */
#define SMB_NSS_INFO_INTERFACE_VERSION 1
@@ -84,9 +88,5 @@ NTSTATUS nss_get_info( const char *domain, const DOM_SID *user_sid,
NTSTATUS nss_close( const char *parameters );
-NTSTATUS idmap_nss_init_domain( const char *domain );
-
-
#endif /* _IDMAP_NSS_H_ */
-#endif /* WITH_ADS */
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 */
-
diff --git a/source3/nsswitch/nss_info_template.c b/source3/nsswitch/nss_info_template.c
index 1b644d7b35..2a14428802 100644
--- a/source3/nsswitch/nss_info_template.c
+++ b/source3/nsswitch/nss_info_template.c
@@ -20,8 +20,6 @@
Boston, MA 02111-1307, USA.
*/
-#ifdef WITH_ADS
-
#include "includes.h"
#include "nss_info.h"
@@ -73,9 +71,9 @@ static NTSTATUS nss_template_close( void )
***********************************************************************/
static struct nss_info_methods nss_template_methods = {
- nss_template_init,
- nss_template_get_info,
- nss_template_close
+ .init = nss_template_init,
+ .get_nss_info = nss_template_get_info,
+ .close_fn = nss_template_close
};
NTSTATUS nss_info_template_init( void )
@@ -85,4 +83,3 @@ NTSTATUS nss_info_template_init( void )
&nss_template_methods);
}
-#endif /* WITH_ADS */
diff --git a/source3/nsswitch/winbindd_ads.c b/source3/nsswitch/winbindd_ads.c
index fc6308deed..f572dd08ff 100644
--- a/source3/nsswitch/winbindd_ads.c
+++ b/source3/nsswitch/winbindd_ads.c
@@ -125,10 +125,6 @@ static ADS_STRUCT *ads_cached_connection(struct winbindd_domain *domain)
return NULL;
}
- /* initialize the nss backend for this domain */
-
- idmap_nss_init_domain( domain->name );
-
/* set the flag that says we don't own the memory even
though we do so that ads_destroy() won't destroy the
structure we pass back by reference */