1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

Adjust comment to respect change to no longer use unixsam by default...

This commit is contained in:
Andrew Bartlett 0001-01-01 00:00:00 +00:00
parent c98bbc7507
commit 87f491d6a6

View File

@ -646,9 +646,8 @@ BOOL local_lookup_sid(DOM_SID *sid, char *name, enum SID_NAME_USE *psid_name_use
if (!NT_STATUS_IS_OK(pdb_init_sam(&sam_account))) {
return False;
}
/* This now does the 'generic' mapping in pdb_unix */
/* 'guest' is also handled there */
/* see if the passdb can help us with the name of the user */
if (pdb_getsampwsid(sam_account, sid)) {
fstrcpy(name, pdb_get_username(sam_account));
*psid_name_use = SID_NAME_USER;