From e80e218152ec59f454007116a36a3d1f65ad030a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnther=20Deschner?= Date: Mon, 14 Nov 2011 16:29:57 +0100 Subject: s3-modules: remove the last "init_module" traces. Guenther --- examples/pdb/test.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'examples/pdb/test.c') diff --git a/examples/pdb/test.c b/examples/pdb/test.c index fb7806f951a..5780130f3d8 100644 --- a/examples/pdb/test.c +++ b/examples/pdb/test.c @@ -75,7 +75,7 @@ static NTSTATUS testsam_add_sam_account (struct pdb_methods *methods, struct sam return NT_STATUS_NOT_IMPLEMENTED; } -NTSTATUS testsam_init(struct pdb_methods **pdb_method, const char *location) +static NTSTATUS testsam_init(struct pdb_methods **pdb_method, const char *location) { NTSTATUS nt_status; @@ -107,7 +107,9 @@ NTSTATUS testsam_init(struct pdb_methods **pdb_method, const char *location) return NT_STATUS_OK; } -NTSTATUS init_module(void) { +NTSTATUS pdb_testsam_init(void); +NTSTATUS pdb_testsam_init(void) +{ return smb_register_passdb(PASSDB_INTERFACE_VERSION, "testsam", testsam_init); } -- cgit v1.2.1