diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-04-07 04:52:30 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-04-07 04:52:30 +0000 |
commit | 998d65d502e1d213a3a7fb08d846cc82a9453155 (patch) | |
tree | b346f8eda52371a7e64b25c5c62a0ca4392e69f4 /source3/passdb | |
parent | 094df785ea671eeec0a28e595da8debcf9970555 (diff) | |
download | samba-998d65d502e1d213a3a7fb08d846cc82a9453155.tar.gz samba-998d65d502e1d213a3a7fb08d846cc82a9453155.tar.bz2 samba-998d65d502e1d213a3a7fb08d846cc82a9453155.zip |
Restore previous behaviour to update on pdb_unix (auto-upgrade to new account)
(This used to be commit 0509cbc59174354b7c57206a07f7bd222cc87db4)
Diffstat (limited to 'source3/passdb')
-rw-r--r-- | source3/passdb/pdb_unix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/passdb/pdb_unix.c b/source3/passdb/pdb_unix.c index dcdf5cf50b..ed83024248 100644 --- a/source3/passdb/pdb_unix.c +++ b/source3/passdb/pdb_unix.c @@ -117,6 +117,7 @@ NTSTATUS pdb_init_unixsam(PDB_CONTEXT *pdb_context, PDB_METHODS **pdb_method, co } (*pdb_method)->name = "unixsam"; + (*pdb_method)->update_sam_account = unixsam_update_sam_account; (*pdb_method)->getsampwnam = unixsam_getsampwnam; (*pdb_method)->getsampwsid = unixsam_getsampwsid; |