r9929: Fix indentation
authorAndrew Bartlett <abartlet@samba.org>
Thu, 1 Sep 2005 23:24:47 +0000 (23:24 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:36:23 +0000 (13:36 -0500)
Andrew Bartlett

source/lib/credentials.c
source/lib/ldb/common/ldb_dn.c

index 162b52e5d05139531532f4dd82bdf0f413f13ad4..ce122197b8f5ec2b8407315b8584fb5d96f860cc 100644 (file)
@@ -128,7 +128,9 @@ const char *cli_credentials_get_principal(struct cli_credentials *cred, TALLOC_C
        return talloc_reference(mem_ctx, cred->principal);
 }
 
-BOOL cli_credentials_set_principal(struct cli_credentials *cred, const char *val, enum credentials_obtained obtained)
+BOOL cli_credentials_set_principal(struct cli_credentials *cred, 
+                                  const char *val, 
+                                  enum credentials_obtained obtained)
 {
        if (obtained >= cred->principal_obtained) {
                cred->principal = talloc_strdup(cred, val);
index 20cef9dd81c75b8371fdc6c6e66ecc355305d1c0..d1a311dad67bd96dfae20c1bd212e0c6d8828505 100644 (file)
@@ -688,7 +688,7 @@ struct ldb_dn *ldb_dn_get_parent(void *mem_ctx, const struct ldb_dn *dn)
 }
 
 struct ldb_dn_component *ldb_dn_build_component(void *mem_ctx, const char *attr,
-                                                              const char *val)
+                                               const char *val)
 {
        struct ldb_dn_component *dc;
 
@@ -783,7 +783,7 @@ struct ldb_dn *ldb_dn_compose(void *mem_ctx, const struct ldb_dn *dn1, const str
 
        for (i = 0; i < dn1->comp_num; i++) {
                new->components[i] = ldb_dn_copy_component(new->components,
-                                                               &(dn1->components[i]));
+                                                          &(dn1->components[i]));
        }
 
        return new;