diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-09-09 22:25:43 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-10-06 07:18:07 +0200 |
commit | 355b5e3a831415d9bef97de4b2d83e353de4ab0f (patch) | |
tree | 5fceb57b6e7f1f7242030ae308927a4c5a7e2f5f /source3/modules | |
parent | a718b5a4f1ebfb63aec2f43b654d8e97f099fe85 (diff) | |
download | samba-355b5e3a831415d9bef97de4b2d83e353de4ab0f.tar.gz samba-355b5e3a831415d9bef97de4b2d83e353de4ab0f.tar.bz2 samba-355b5e3a831415d9bef97de4b2d83e353de4ab0f.zip |
modules: standardise on samba_init_module as the hook symbol to resolve
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/perfcount_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/perfcount_test.c b/source3/modules/perfcount_test.c index 99904ac3da..8d17ee513f 100644 --- a/source3/modules/perfcount_test.c +++ b/source3/modules/perfcount_test.c @@ -381,7 +381,7 @@ static struct smb_perfcount_handlers perfcount_test_handlers = { perfcount_test_end }; -NTSTATUS init_samba_module(void) +NTSTATUS samba_init_module(void) { return smb_register_perfcounter(SMB_PERFCOUNTER_INTERFACE_VERSION, "pc_test", &perfcount_test_handlers); |