diff options
author | Simo Sorce <idra@samba.org> | 2008-07-12 22:44:15 -0400 |
---|---|---|
committer | Karolin Seeger <kseeger@samba.org> | 2008-09-08 13:49:00 +0200 |
commit | fdd4abfb65ce7aeffa949a23b13e95497e79522d (patch) | |
tree | 5bfa35ff409e882bce8a6b92ded6339fa3cad45a /source/passdb | |
parent | 52ff2f58811622263d6acc52a1d86887244ff15b (diff) | |
download | samba-fdd4abfb65ce7aeffa949a23b13e95497e79522d.tar.gz samba-fdd4abfb65ce7aeffa949a23b13e95497e79522d.tar.xz samba-fdd4abfb65ce7aeffa949a23b13e95497e79522d.zip |
samu_set_unix() does not use the rid allocator, but forces to use the
algoritmic allocator unconditionally, this is wrong an inconsistent.
Use samu_alloc_rid_unix() instead.
(If we create a new user we should do it in a way consistent with all
other commands like pdbedit -a and net rpc user add.)
(cherry picked from commit e1d4db8f55b25c7e9c408cb334fb89ccfd4c6565)
Diffstat (limited to 'source/passdb')
-rw-r--r-- | source/passdb/passdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/passdb/passdb.c b/source/passdb/passdb.c index a670b46d691..1606c64b1b0 100644 --- a/source/passdb/passdb.c +++ b/source/passdb/passdb.c @@ -675,7 +675,7 @@ NTSTATUS local_password_change(const char *user_name, return NT_STATUS_NO_MEMORY; } - result = samu_set_unix( sam_pass, pwd ); + result = samu_alloc_rid_unix( sam_pass, pwd ); DEBUGLEVEL = tmp_debug; |