From df9e345366078ccaa94df7c2f2e33b292605e88a Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 13 Mar 2002 00:19:40 +0000 Subject: fixed mapping of SIDs for local users --- source/smbd/uid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/smbd/uid.c b/source/smbd/uid.c index c3156b7b14c..1946078d6e1 100644 --- a/source/smbd/uid.c +++ b/source/smbd/uid.c @@ -631,7 +631,7 @@ BOOL sid_to_uid(DOM_SID *psid, uid_t *puid, enum SID_NAME_USE *sidtype) if (!winbind_sid_to_uid(puid, psid)) { DEBUG(10,("sid_to_uid: winbind lookup for sid %s failed.\n", sid_to_string(sid_str, psid) )); - return False; + return local_sid_to_uid(puid, psid, sidtype); } DEBUG(10,("sid_to_uid: winbindd %s -> %u\n", -- cgit