mirror of
https://github.com/samba-team/samba.git
synced 2025-03-05 20:58:40 +03:00
Fix reversed test trying to fix bug #5713
(It instead ensured that only 'top' had a SUP keyword) This clearly shows that 937b466266256d26d02cf8d48e72a26272fe8627 was not a full or correct fix, but despite this I can no longer reproduce the issue. Further investigation is required. Andrew Bartlett (This used to be commit 95a9e9b6b84866cd300b1d19915627c6718b4dde)
This commit is contained in:
parent
e7cc705efb
commit
ffc9f85bfb
@ -182,7 +182,7 @@ char *schema_class_description(TALLOC_CTX *mem_ctx,
|
||||
IF_NULL_FAIL_RET(schema_entry);
|
||||
}
|
||||
|
||||
if (subClassOf && strcasecmp(subClassOf, name) == 0) {
|
||||
if (subClassOf && strcasecmp(subClassOf, name) != 0) {
|
||||
schema_entry = talloc_asprintf_append(schema_entry,
|
||||
"SUP %s%s", subClassOf, seperator);
|
||||
IF_NULL_FAIL_RET(schema_entry);
|
||||
|
Loading…
x
Reference in New Issue
Block a user