From 10c50f74d0efc4a6e4d58e7158b319da41528f8f Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 16 Jun 2010 16:05:34 +0200 Subject: s3:idmap: add low_id and high_id to the idmap_domain struct This global data will replace the backend-specific filter_low_id and filter_high_id. The presence of a range is generic to all idmap configs. --- source3/include/idmap.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3') diff --git a/source3/include/idmap.h b/source3/include/idmap.h index b1598208b2..ad94045cbf 100644 --- a/source3/include/idmap.h +++ b/source3/include/idmap.h @@ -33,6 +33,8 @@ struct idmap_domain { const char *name; struct idmap_methods *methods; + uint32_t low_id; + uint32_t high_id; void *private_data; }; -- cgit