From 7859c7df44bb6934bec06d8095c49f2f85c7b9eb Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 20 Feb 2003 19:14:55 +0000 Subject: Merge in smb_load_module() function from HEAD (This used to be commit 6cb124247d10de86bdf6a98f3dd703b3a9eb1d35) --- source3/lib/module.c | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'source3/lib/module.c') diff --git a/source3/lib/module.c b/source3/lib/module.c index 6febe8a9f1..2498f6de2c 100644 --- a/source3/lib/module.c +++ b/source3/lib/module.c @@ -57,24 +57,6 @@ NTSTATUS smb_load_module(const char *module_name) return nt_status; } -/* Load all modules in list and return number of - * modules that has been successfully loaded */ -int smb_load_modules(const char **modules) -{ - int i; - int success = 0; - - for(i = 0; modules[i]; i++){ - if(NT_STATUS_IS_OK(smb_load_module(modules[i]))) { - success++; - } - } - - DEBUG(2, ("%d modules successfully loaded\n", success)); - - return success; -} - #else /* HAVE_DLOPEN */ NTSTATUS smb_load_module(const char *module_name) @@ -83,10 +65,4 @@ NTSTATUS smb_load_module(const char *module_name) return NT_STATUS_NOT_SUPPORTED; } -int smb_load_modules(const char **modules) -{ - DEBUG(0,("This samba executable has not been build with plugin support")); - return -1; -} - #endif /* HAVE_DLOPEN */ -- cgit