diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2002-08-29 09:20:49 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2002-08-29 09:20:49 +0000 |
commit | 558297b703fc29feb6e6fac205570f24b33d8b37 (patch) | |
tree | 17163b9212a4754942eb9642958f88d7fc513004 /source3/passdb | |
parent | 66c389fe92510991e6c9d2cb93443692e5007edb (diff) | |
download | samba-558297b703fc29feb6e6fac205570f24b33d8b37.tar.gz samba-558297b703fc29feb6e6fac205570f24b33d8b37.tar.bz2 samba-558297b703fc29feb6e6fac205570f24b33d8b37.zip |
small fixes
make lp_sam_backend() a list
(This used to be commit 06eb3138ab14ff450bbc44f5fa539867ce67a7dd)
Diffstat (limited to 'source3/passdb')
-rw-r--r-- | source3/passdb/pdb_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/pdb_plugin.c b/source3/passdb/pdb_plugin.c index e8ac5ccfac..ea67da23a5 100644 --- a/source3/passdb/pdb_plugin.c +++ b/source3/passdb/pdb_plugin.c @@ -59,7 +59,7 @@ NTSTATUS pdb_init_plugin(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, con return NT_STATUS_UNSUCCESSFUL; } - if (plugin_version()!=PASSDB_INTERFACE_VERSION) { + if (plugin_version() != PASSDB_INTERFACE_VERSION) { sys_dlclose(dl_handle); DEBUG(0, ("Wrong PASSDB_INTERFACE_VERSION! sam plugin has version %d and version %d is needed! Please update!\n", plugin_version(),PASSDB_INTERFACE_VERSION)); |