summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClive Ferreira <cliveferreira@catalyst.net.nz>2016-10-11 15:33:06 +1300
committerKarolin Seeger <kseeger@samba.org>2016-11-30 12:19:33 +0100
commitfbd8e67394ab85c7840e5c57bc718978e249b773 (patch)
treee5dd93ac33cab4ba0c36706fbbbea86a91d3f893
parent7a23c894c4503d151522948100c7fd629e5ad6f9 (diff)
downloadsamba-fbd8e67394ab85c7840e5c57bc718978e249b773.tar.gz
objectclass_attrs: correctly indent a comment
Signed-off-by: Clive Ferreira <cliveferreira@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Pair-programmed-with: Garming Sam <garming@catalyst.net.nz> BUG: https://bugzilla.samba.org/show_bug.cgi?id=12394 (cherry picked from commit a3baf4b8049d222b8be71dce3bc1cd46b8391f73)
-rw-r--r--source4/dsdb/samdb/ldb_modules/objectclass_attrs.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/objectclass_attrs.c b/source4/dsdb/samdb/ldb_modules/objectclass_attrs.c
index c83c2e9fc4f..616cff83482 100644
--- a/source4/dsdb/samdb/ldb_modules/objectclass_attrs.c
+++ b/source4/dsdb/samdb/ldb_modules/objectclass_attrs.c
@@ -435,12 +435,13 @@ static int attr_handler2(struct oc_context *ac)
}
if (isSchemaAttr) {
- /* Before really adding an attribute in the database,
- * let's check that we can translate it into a dbsd_attribute and
- * that we can find a valid syntax object.
- * If not it's better to reject this attribute than not be able
- * to start samba next time due to schema being unloadable.
- */
+ /*
+ * Before really adding an attribute in the database,
+ * let's check that we can translate it into a dsdb_attribute and
+ * that we can find a valid syntax object.
+ * If not it's better to reject this attribute than not be able
+ * to start samba next time due to schema being unloadable.
+ */
struct dsdb_attribute *att = talloc(ac, struct dsdb_attribute);
const struct dsdb_syntax *attrSyntax;
WERROR status;