Update for the new modules system
authorJelmer Vernooij <jelmer@samba.org>
Mon, 28 Apr 2003 01:24:26 +0000 (01:24 +0000)
committerJelmer Vernooij <jelmer@samba.org>
Mon, 28 Apr 2003 01:24:26 +0000 (01:24 +0000)
(This used to be commit 528c56176b186d9fa43f6a0c9831562c123ec25d)

examples/pdb/pdb_test.c

index c5ba094e42c7646033f15247396478763e313b58..f5fb57ddb20acc7c2181595c567672b3cfd67e80 100644 (file)
@@ -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;
+}