diff options
author | Michael Adam <obnox@samba.org> | 2008-08-15 00:47:30 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-08-15 23:19:58 +0200 |
commit | 26c34534071db15d6b89c08bfe9207723b338aa5 (patch) | |
tree | ea246ff56afc963eab02f05fa6d32054accecc63 /source3 | |
parent | 25f31194e5adcf66a8c2599da6be92fff8590d22 (diff) | |
download | samba-26c34534071db15d6b89c08bfe9207723b338aa5.tar.gz samba-26c34534071db15d6b89c08bfe9207723b338aa5.tar.xz samba-26c34534071db15d6b89c08bfe9207723b338aa5.zip |
Use module_path() instead of lib_path() for loading shared modules.
Michael
(This used to be commit 22fb3ef1bb4abb33b49d275f9a5d85a1924c22ea)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/module.c b/source3/lib/module.c index 2e56e8e8b9..76983387ff 100644 --- a/source3/lib/module.c +++ b/source3/lib/module.c @@ -118,7 +118,7 @@ NTSTATUS smb_probe_module(const char *subsystem, const char *module) full_path = talloc_asprintf(ctx, "%s/%s.%s", - lib_path(subsystem), + modules_path(subsystem), module, shlib_ext()); if (!full_path) { |