diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-04-15 16:01:14 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-04-15 16:01:14 +0000 |
commit | 9c3cecbdac2ea888f95db2194bf9f5d2457aef09 (patch) | |
tree | d6cc4e5e34a32cd4a74e18c65f0794c68108f6a2 /source3/include | |
parent | a0e8344a8d1e8fbbde4cc4ca5a5722ee1e2c2bcf (diff) | |
download | samba-9c3cecbdac2ea888f95db2194bf9f5d2457aef09.tar.gz samba-9c3cecbdac2ea888f95db2194bf9f5d2457aef09.tar.bz2 samba-9c3cecbdac2ea888f95db2194bf9f5d2457aef09.zip |
Use the new modules system for passdb (merge from HEAD)
(This used to be commit 1755d5f66221a910863cfc8a197f8d792e6b6e3d)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/passdb.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/source3/include/passdb.h b/source3/include/passdb.h index fa80b263ff..06409aa34e 100644 --- a/source3/include/passdb.h +++ b/source3/include/passdb.h @@ -34,13 +34,6 @@ #define PASSDB_INTERFACE_VERSION 4 -/* use this inside a passdb module */ -#define PDB_MODULE_VERSIONING_MAGIC \ -int pdb_version(void)\ -{\ - return PASSDB_INTERFACE_VERSION;\ -} - typedef struct pdb_context { struct pdb_methods *pdb_methods; @@ -156,6 +149,7 @@ struct pdb_init_function_entry { const char *name; /* Function to create a member of the pdb_methods list */ pdb_init_function init; + struct pdb_init_function_entry *prev, *next; }; #endif /* _PASSDB_H */ |