diff options
author | Günther Deschner <gd@samba.org> | 2011-02-17 14:20:19 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-02-17 16:02:20 +0100 |
commit | 0ed46df56a84dfc40e172ea1e460fa6490b15a2a (patch) | |
tree | 5174fae8d29cb635f894a3789a1af1444ed86d18 /source3 | |
parent | a0c77c2eda8ffef0f5775acda56d4f1e44344cea (diff) | |
download | samba-0ed46df56a84dfc40e172ea1e460fa6490b15a2a.tar.gz samba-0ed46df56a84dfc40e172ea1e460fa6490b15a2a.tar.bz2 samba-0ed46df56a84dfc40e172ea1e460fa6490b15a2a.zip |
s3-passdb: add PDB_CAP_TRUSTED_DOMAINS_EX.
Guenther
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/passdb.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/include/passdb.h b/source3/include/passdb.h index 77956cb19a..915f2950f3 100644 --- a/source3/include/passdb.h +++ b/source3/include/passdb.h @@ -262,8 +262,9 @@ enum pdb_policy_type { PDB_POLICY_REFUSE_MACHINE_PW_CHANGE = 10 }; -#define PDB_CAP_STORE_RIDS 0x0001 -#define PDB_CAP_ADS 0x0002 +#define PDB_CAP_STORE_RIDS 0x0001 +#define PDB_CAP_ADS 0x0002 +#define PDB_CAP_TRUSTED_DOMAINS_EX 0x0004 /***************************************************************** Functions to be implemented by the new (v2) passdb API |