diff options
author | Günther Deschner <gd@samba.org> | 2011-11-14 16:29:57 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-11-14 18:44:41 +0100 |
commit | e80e218152ec59f454007116a36a3d1f65ad030a (patch) | |
tree | b854ff302dbb305ec9c37925ebe4f853b604e844 /examples | |
parent | f0117237fa7446bfd0ff8dbcba4e6625f44a397a (diff) | |
download | samba-e80e218152ec59f454007116a36a3d1f65ad030a.tar.gz |
s3-modules: remove the last "init_module" traces.
Guenther
Diffstat (limited to 'examples')
-rw-r--r-- | examples/auth/auth_skel.c | 5 | ||||
-rw-r--r-- | examples/pdb/test.c | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/examples/auth/auth_skel.c b/examples/auth/auth_skel.c index 4352251f4ad..3f3379f0e93 100644 --- a/examples/auth/auth_skel.c +++ b/examples/auth/auth_skel.c @@ -42,7 +42,7 @@ static NTSTATUS check_skel_security(const struct auth_context *auth_context, } /* module initialisation */ -NTSTATUS auth_init_skel(struct auth_context *auth_context, const char *param, auth_methods **auth_method) +static NTSTATUS auth_init_skel(struct auth_context *auth_context, const char *param, auth_methods **auth_method) { struct auth_methods *result; @@ -67,7 +67,8 @@ NTSTATUS auth_init_skel(struct auth_context *auth_context, const char *param, au return NT_STATUS_OK; } -NTSTATUS init_module(void) +NTSTATUS auth_skel_init(void); +NTSTATUS auth_skel_init(void) { return smb_register_auth(AUTH_INTERFACE_VERSION, "skel", auth_init_skel); } 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); } |