diff options
author | Kamen Mazdrashki <kamenim@samba.org> | 2010-06-28 21:07:51 +0300 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-07-02 10:07:09 +1000 |
commit | f570eec26432a66d7fbc2a70017b3df8dbdd1e89 (patch) | |
tree | f5c25c6ce18bb7ab6acd630137469ddc3aa702f3 | |
parent | 3721161d90c835604f38d2f178fbcd8c5f708077 (diff) | |
download | samba-f570eec26432a66d7fbc2a70017b3df8dbdd1e89.tar.gz samba-f570eec26432a66d7fbc2a70017b3df8dbdd1e89.tar.bz2 samba-f570eec26432a66d7fbc2a70017b3df8dbdd1e89.zip |
s4/dsdb: Add DSDB_FLAG_NEXT_MODULE flag
Although it is not currently used in implementation,
my intention is for callers to clearly state what
action they want to execute.
Currently when a caller wants to pass the call to the next
module in the chain, this flag is either omitted or 0 is used
(which is somewhat hacky, isn't it)
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/util.h b/source4/dsdb/samdb/ldb_modules/util.h index 9ba2e33f56..8634f76d87 100644 --- a/source4/dsdb/samdb/ldb_modules/util.h +++ b/source4/dsdb/samdb/ldb_modules/util.h @@ -30,6 +30,7 @@ struct dsdb_fsmo_extended_op; /* extend the dsdb_request_add_controls() flags for module specific functions */ +#define DSDB_FLAG_NEXT_MODULE 0x00100000 #define DSDB_FLAG_OWN_MODULE 0x00400000 #define DSDB_FLAG_TOP_MODULE 0x00800000 |