1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

Replaced DS_FLAG_ATTR_IS_CRITICAL with SCHEMA_FLAG_ATTR_IS_CRITICAL.

This commit is contained in:
Nadezhda Ivanova 2010-05-03 16:47:56 +02:00
parent 9cc10e6a57
commit e2e39117bc
2 changed files with 1 additions and 4 deletions

View File

@ -188,9 +188,6 @@
#define DS_FLAG_ATTR_REQ_PARTIAL_SET_MEMBER 0x00000002
#define DS_FLAG_ATTR_IS_CONSTRUCTED 0x00000004
/* sa->systemFlagsEx on attributes */
#define DS_FLAG_ATTR_IS_CRITICAL 0x00000001
/* 7.1.1.2.2.1.2.1.1 nTDSDSA Object options flags */
#define DS_NTDSDSA_OPT_IS_GC 0x00000001
#define DS_NTDSDSA_OPT_DISABLE_INBOUND_REPL 0x00000002

View File

@ -88,7 +88,7 @@ bool dsdb_attribute_is_attr_in_filtered_replica(struct dsdb_attribute *attribute
{
int i, size = sizeof(never_in_filtered_attrs)/sizeof(char *);
if (attribute->systemOnly ||
attribute->schemaFlagsEx & DS_FLAG_ATTR_IS_CRITICAL) {
attribute->schemaFlagsEx & SCHEMA_FLAG_ATTR_IS_CRITICAL) {
return false;
}
if (attribute->systemFlags & (DS_FLAG_ATTR_NOT_REPLICATED |