summaryrefslogtreecommitdiff
path: root/examples/pdb/pdb_test.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2002-11-15 17:49:47 +0000
committerJelmer Vernooij <jelmer@samba.org>2002-11-15 17:49:47 +0000
commit794ecd30f9bb9dee5408b248894957ee2d3fd07a (patch)
tree46b243fc8180b826283276be3c55761619226c1d /examples/pdb/pdb_test.c
parent52412699c1b92f82e9e3623d9959019f2a53ec0c (diff)
downloadsamba-794ecd30f9bb9dee5408b248894957ee2d3fd07a.tar.gz
samba-794ecd30f9bb9dee5408b248894957ee2d3fd07a.tar.bz2
samba-794ecd30f9bb9dee5408b248894957ee2d3fd07a.zip
Update to use smb_register_passdb()
(This used to be commit b10541b71ba288783976e8c124b6667b7df3b12d)
Diffstat (limited to 'examples/pdb/pdb_test.c')
-rw-r--r--examples/pdb/pdb_test.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/examples/pdb/pdb_test.c b/examples/pdb/pdb_test.c
index c5ba094e42..f5fb57ddb2 100644
--- a/examples/pdb/pdb_test.c
+++ b/examples/pdb/pdb_test.c
@@ -25,9 +25,6 @@ static int testsam_debug_level = DBGC_ALL;
#undef DBGC_CLASS
#define DBGC_CLASS testsam_debug_level
-/* define the version of the passdb interface */
-PDB_MODULE_VERSIONING_MAGIC
-
/***************************************************************
Start enumeration of the passwd list.
****************************************************************/
@@ -107,7 +104,7 @@ static NTSTATUS testsam_add_sam_account (struct pdb_methods *methods, SAM_ACCOUN
return NT_STATUS_NOT_IMPLEMENTED;
}
-NTSTATUS pdb_init(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location)
+NTSTATUS testsam_init(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char *location)
{
NTSTATUS nt_status;
@@ -141,3 +138,12 @@ NTSTATUS pdb_init(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, const char
return NT_STATUS_OK;
}
+
+int init_module(void);
+
+int init_module() {
+ if(smb_register_passdb("testsam", testsam_init, PASSDB_INTERFACE_VERSION))
+ return 0;
+
+ return 1;
+}