Revert "s3:idmap: Remove passd check from idmap_backends_unixid_to_sid()."
authorVolker Lendecke <vl@samba.org>
Fri, 2 Jan 2009 13:51:06 +0000 (14:51 +0100)
committerVolker Lendecke <vl@samba.org>
Fri, 2 Jan 2009 14:00:05 +0000 (15:00 +0100)
This reverts commit 45db33e73262d8e195a46fb96405dfb3dc43d6bc.

source3/winbindd/idmap.c

index 6be55ef03c63235296a2c6abbb9addf722c6781c..38cc0d0c0abdeb36df77c2249ffe5c9bd85ea824 100644 (file)
@@ -735,6 +735,15 @@ NTSTATUS idmap_backends_unixid_to_sid(const char *domname, struct id_map *id)
        maps[0] = id;
        maps[1] = NULL;
 
+       if (sid_check_is_in_builtin(id->sid)
+           || (sid_check_is_in_our_domain(id->sid))) {
+               dom = idmap_init_passdb_domain(NULL);
+               if (dom == NULL) {
+                       return NT_STATUS_NONE_MAPPED;
+               }
+               return dom->methods->unixids_to_sids(dom, maps);
+       }
+
        dom = idmap_find_domain(domname);
        if (dom == NULL) {
                return NT_STATUS_NONE_MAPPED;