[SCM] Samba Shared Repository - branch v4-0-test updated - release-4-0-0alpha5-484-g95a9e9b

Andrew Bartlett abartlet at samba.org
Tue Sep 9 08:11:19 GMT 2008


The branch, v4-0-test has been updated
       via  95a9e9b6b84866cd300b1d19915627c6718b4dde (commit)
      from  937b466266256d26d02cf8d48e72a26272fe8627 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v4-0-test


- Log -----------------------------------------------------------------
commit 95a9e9b6b84866cd300b1d19915627c6718b4dde
Author: Andrew Bartlett <abartlet at samba.org>
Date:   Tue Sep 9 18:02:05 2008 +1000

    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

-----------------------------------------------------------------------

Summary of changes:
 source/dsdb/schema/schema_description.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/dsdb/schema/schema_description.c b/source/dsdb/schema/schema_description.c
index d780fcf..a40de37 100644
--- a/source/dsdb/schema/schema_description.c
+++ b/source/dsdb/schema/schema_description.c
@@ -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);


-- 
Samba Shared Repository


More information about the samba-cvs mailing list