summaryrefslogtreecommitdiff
path: root/source3/include/idmap.h
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2010-07-29 17:51:13 +0200
committerMichael Adam <obnox@samba.org>2010-08-14 02:10:41 +0200
commitdc4d838401787a5754d2114ba94029bef2a19f6d (patch)
tree364fbc58cddef815c0f7cdf81f47815b1c28b0d0 /source3/include/idmap.h
parent10c50f74d0efc4a6e4d58e7158b319da41528f8f (diff)
downloadsamba-dc4d838401787a5754d2114ba94029bef2a19f6d.tar.gz
samba-dc4d838401787a5754d2114ba94029bef2a19f6d.tar.bz2
samba-dc4d838401787a5754d2114ba94029bef2a19f6d.zip
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.
Diffstat (limited to 'source3/include/idmap.h')
-rw-r--r--source3/include/idmap.h1
1 files changed, 1 insertions, 0 deletions
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;
};