From: Matthias Dieter Wallnöfer Date: Sat, 27 Jun 2009 12:16:19 +0000 (+0200) Subject: Correct some typos in the LDB partition module X-Git-Url: http://git.samba.org/?a=commitdiff_plain;ds=sidebyside;h=c5a1aa5224395e2439e0468d653acfbd3faa25fc;p=metze%2Fsamba%2Fwip.git Correct some typos in the LDB partition module --- diff --git a/source4/dsdb/samdb/ldb_modules/partition.c b/source4/dsdb/samdb/ldb_modules/partition.c index 965b4c57c549..d4269b631be7 100644 --- a/source4/dsdb/samdb/ldb_modules/partition.c +++ b/source4/dsdb/samdb/ldb_modules/partition.c @@ -143,7 +143,7 @@ static struct dsdb_control_current_partition *find_partition(struct partition_pr /* Look at base DN */ /* Figure out which partition it is under */ - /* Skip the lot if 'data' isn't here yet (initialistion) */ + /* Skip the lot if 'data' isn't here yet (initialisation) */ for (i=0; data && data->partitions && data->partitions[i]; i++) { if (ldb_dn_compare_base(data->partitions[i]->dn, dn) == 0) { return data->partitions[i]; @@ -594,7 +594,7 @@ static int partition_rename(struct ldb_module *module, struct ldb_request *req) struct partition_private_data *data = talloc_get_type(module->private_data, struct partition_private_data); - /* Skip the lot if 'data' isn't here yet (initialization) */ + /* Skip the lot if 'data' isn't here yet (initialisation) */ if (!data) { return LDB_ERR_OPERATIONS_ERROR; } @@ -702,7 +702,7 @@ static int partition_end_trans(struct ldb_module *module) /* Look at base DN */ /* Figure out which partition it is under */ - /* Skip the lot if 'data' isn't here yet (initialistion) */ + /* Skip the lot if 'data' isn't here yet (initialisation) */ final_ret = LDB_SUCCESS; for (i=0; data && data->partitions && data->partitions[i]; i++) { @@ -805,7 +805,7 @@ static int partition_sequence_number(struct ldb_module *module, struct ldb_reque } talloc_free(res); - /* Skip the lot if 'data' isn't here yet (initialistion) */ + /* Skip the lot if 'data' isn't here yet (initialisation) */ for (i=0; data && data->partitions && data->partitions[i]; i++) { res = talloc_zero(req, struct ldb_result); @@ -903,7 +903,7 @@ static int partition_sequence_number(struct ldb_module *module, struct ldb_reque talloc_free(res); - /* Skip the lot if 'data' isn't here yet (initialistion) */ + /* Skip the lot if 'data' isn't here yet (initialisation) */ for (i=0; data && data->partitions && data->partitions[i]; i++) { res = talloc_zero(req, struct ldb_result);