diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-07-07 19:01:15 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:19:12 -0500 |
commit | 66259d06fb8c3f24480b0fe46b93e5dc34b5e0a5 (patch) | |
tree | 0c8297255fa44ad4c3ce2268853dfdf0670d34d3 | |
parent | 3899f95e1f44a4dfe31b42119ad5e14304d8a4b4 (diff) | |
download | samba-66259d06fb8c3f24480b0fe46b93e5dc34b5e0a5.tar.gz samba-66259d06fb8c3f24480b0fe46b93e5dc34b5e0a5.tar.bz2 samba-66259d06fb8c3f24480b0fe46b93e5dc34b5e0a5.zip |
r16866: No idea why I did not see the warning, sorry....
(This used to be commit 84913caebdb461fed2c94fadfa0039b32a83cb6d)
-rw-r--r-- | source3/passdb/lookup_sid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/lookup_sid.c b/source3/passdb/lookup_sid.c index 29b83e4faa..dba43ed6c4 100644 --- a/source3/passdb/lookup_sid.c +++ b/source3/passdb/lookup_sid.c @@ -1074,7 +1074,7 @@ void uid_to_sid(DOM_SID *psid, uid_t uid) sid_append_rid(psid, algorithmic_pdb_uid_to_user_rid(uid)); goto done; } else { - uid_to_unix_users_sid(psid, uid); + uid_to_unix_users_sid(uid, psid); goto done; } |