From 47ea3a2bf242a446f658f1573ec5d3ea533333f0 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 19 Mar 2003 18:45:19 +0000 Subject: Put in the new modules system. It's now used by passdb and rpc. I will put a doc about it in dev-doc later today. (This used to be commit af7bfee0c6902c07fdb8d3abccf4c8d6bab00b5a) --- source3/lib/module.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/lib') diff --git a/source3/lib/module.c b/source3/lib/module.c index 4e2fe48af7..bf37078bb9 100644 --- a/source3/lib/module.c +++ b/source3/lib/module.c @@ -87,6 +87,8 @@ int smb_probe_module(const char *subsystem, const char *module) pstrcat(full_path, module); pstrcat(full_path, "."); pstrcat(full_path, shlib_ext()); + + DEBUG(5, ("Probing module %s: Trying to load from %s\n", module, full_path)); return smb_load_module(full_path); } -- cgit