From dc4d838401787a5754d2114ba94029bef2a19f6d Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 29 Jul 2010 17:51:13 +0200 Subject: s3:idmap: add a read_only flag to the idmap_domain struct. This will be used to mark "allocating backends" (tdb, tdb2, ldap) read-only. --- source3/include/idmap.h | 1 + 1 file changed, 1 insertion(+) (limited to 'source3') diff --git a/source3/include/idmap.h b/source3/include/idmap.h index ad94045cbf..aab41cd7d3 100644 --- a/source3/include/idmap.h +++ b/source3/include/idmap.h @@ -35,6 +35,7 @@ struct idmap_domain { struct idmap_methods *methods; uint32_t low_id; uint32_t high_id; + bool read_only; void *private_data; }; -- cgit