diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-06-21 20:19:02 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-06-23 20:10:03 +1000 |
commit | c4482bf53e26c43edccb0871fa5525a590a1026c (patch) | |
tree | 37364ab94d8501b268a3ebd0bc213782f6066c4c /source4/dsdb | |
parent | 80701e5f29567e4ad75a66eb6c8711f817b361b8 (diff) | |
download | samba-c4482bf53e26c43edccb0871fa5525a590a1026c.tar.gz samba-c4482bf53e26c43edccb0871fa5525a590a1026c.tar.bz2 samba-c4482bf53e26c43edccb0871fa5525a590a1026c.zip |
libds:common Remove DS_DC_* domain functionality flags
These are just a subset of the DS_DOMAIN_ functionality flags, are compared and often confused with each other. Just make them one set.
Andrew Bartlett
Diffstat (limited to 'source4/dsdb')
-rw-r--r-- | source4/dsdb/pydsdb.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/source4/dsdb/pydsdb.c b/source4/dsdb/pydsdb.c index bddda8d092..4060b327af 100644 --- a/source4/dsdb/pydsdb.c +++ b/source4/dsdb/pydsdb.c @@ -578,14 +578,4 @@ void initdsdb(void) PyInt_FromLong(DS_DOMAIN_FUNCTION_2008)); PyModule_AddObject(m, "DS_DOMAIN_FUNCTION_2008_R2", PyInt_FromLong(DS_DOMAIN_FUNCTION_2008_R2)); - - /* "domainControllerFunctionality" flags in the rootDSE */ - PyModule_AddObject(m, "DS_DC_FUNCTION_2000", - PyInt_FromLong(DS_DC_FUNCTION_2000)); - PyModule_AddObject(m, "DS_DC_FUNCTION_2003", - PyInt_FromLong(DS_DC_FUNCTION_2003)); - PyModule_AddObject(m, "DS_DC_FUNCTION_2008", - PyInt_FromLong(DS_DC_FUNCTION_2008)); - PyModule_AddObject(m, "DS_DC_FUNCTION_2008_R2", - PyInt_FromLong(DS_DC_FUNCTION_2008_R2)); } |