s3:idmap_ad: use range from idmap_domain in idmap_ad_unixids_to_sids()
authorMichael Adam <obnox@samba.org>
Tue, 22 Jun 2010 11:13:57 +0000 (13:13 +0200)
committerMichael Adam <obnox@samba.org>
Sat, 14 Aug 2010 00:10:55 +0000 (02:10 +0200)
source3/winbindd/idmap_ad.c

index 37095c12c873063437017005eb7ae90ee9338ae8..5472edc2203c7a9ad36fd9110a48a636922abc75 100644 (file)
@@ -458,11 +458,9 @@ again:
                        continue;
                }
 
-               if ((id == 0) ||
-                   (ctx->filter_low_id && (id < ctx->filter_low_id)) ||
-                   (ctx->filter_high_id && (id > ctx->filter_high_id))) {
+               if (!idmap_unix_id_is_in_range(id, dom)) {
                        DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
-                               id, ctx->filter_low_id, ctx->filter_high_id));
+                               id, dom->low_id, dom->high_id));
                        continue;
                }