diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-03-13 00:30:26 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-03-13 00:30:26 +0000 |
commit | 8fe1df84e1dc83085bdc137629ca6c882c13c388 (patch) | |
tree | c73acd16069fa14e79f2d219713c65ddee3a461e | |
parent | 85d7e70d1fd5c69252310c22c60f9974cd392142 (diff) | |
download | samba-8fe1df84e1dc83085bdc137629ca6c882c13c388.tar.gz samba-8fe1df84e1dc83085bdc137629ca6c882c13c388.tar.bz2 samba-8fe1df84e1dc83085bdc137629ca6c882c13c388.zip |
if we know that the SID is local then don't try via winbindd
(This used to be commit 1a8f3ba3ab7717c481e3fb4f1ea8938461160d09)
-rw-r--r-- | source3/smbd/uid.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/smbd/uid.c b/source3/smbd/uid.c index 1946078d6e..864d3d6c66 100644 --- a/source3/smbd/uid.c +++ b/source3/smbd/uid.c @@ -593,6 +593,11 @@ BOOL sid_to_uid(DOM_SID *psid, uid_t *puid, enum SID_NAME_USE *sidtype) { fstring sid_str; + /* if we know its local then don't try winbindd */ + if (sid_compare_domain(&global_sam_sid, psid) == 0) { + return local_sid_to_uid(puid, psid, sidtype); + } + /* (tridge) I commented out the slab of code below in order to support foreign SIDs Do we really need to validate the type of SID we have in this case? */ |