diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-04-21 00:38:39 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-04-21 00:38:39 +0000 |
commit | 0971cbb9eb2ba429b61292ee77985e56c2ab4be1 (patch) | |
tree | 7113770bda1705c1e4bdb24dcf902603c27ec08b | |
parent | 8aa04b531e261dfc5f3ee4fa398ff5623376d843 (diff) | |
download | samba-0971cbb9eb2ba429b61292ee77985e56c2ab4be1.tar.gz samba-0971cbb9eb2ba429b61292ee77985e56c2ab4be1.tar.bz2 samba-0971cbb9eb2ba429b61292ee77985e56c2ab4be1.zip |
Pdb modules are in $libdir/pdb not $libdir/passdb
(This used to be commit 9c9d969c93400d91a12e78635d54e1c5f90efab8)
-rw-r--r-- | source3/passdb/pdb_interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/pdb_interface.c b/source3/passdb/pdb_interface.c index 8adcd9dbfa..337b563c54 100644 --- a/source3/passdb/pdb_interface.c +++ b/source3/passdb/pdb_interface.c @@ -431,7 +431,7 @@ static NTSTATUS make_pdb_methods_name(struct pdb_methods **methods, struct pdb_c /* Try to find a module that contains this module */ if (!entry) { DEBUG(2,("No builtin backend found, trying to load plugin\n")); - if(smb_probe_module("passdb", module_name) && !(entry = pdb_find_backend_entry(module_name))) { + if(smb_probe_module("pdb", module_name) && !(entry = pdb_find_backend_entry(module_name))) { DEBUG(0,("Plugin is available, but doesn't register passdb backend %s\n", module_name)); SAFE_FREE(module_name); return NT_STATUS_UNSUCCESSFUL; |