summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2014-03-30 04:02:39 +0200
committerJelmer Vernooij <jelmer@samba.org>2014-04-14 01:33:06 +0200
commit986e53967a84f8bcabfc333198159ef7ebe9efe0 (patch)
tree5f9e06144270cf18e736a7ceb32d0225c00f1df7
parent5521cf03089322005e7d94c1c2915b31b2b21158 (diff)
downloadsamba-986e53967a84f8bcabfc333198159ef7ebe9efe0.tar.gz
samba-986e53967a84f8bcabfc333198159ef7ebe9efe0.tar.xz
samba-986e53967a84f8bcabfc333198159ef7ebe9efe0.zip
Typo: Commiting -> Committing
Signed-Off-By: Jelmer Vernooij <jelmer@samba.org> Change-Id: I9d71706ce6d6782da72a26fa37e33fe5b527788e Reviewed-on: https://gerrit.samba.org/217 Reviewed-by: Andrew Bartlett <abartlet@samba.org>
-rw-r--r--python/samba/upgrade.py6
-rw-r--r--source3/utils/net_registry_check.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/python/samba/upgrade.py b/python/samba/upgrade.py
index c06454a78b..7eca5b6e5d 100644
--- a/python/samba/upgrade.py
+++ b/python/samba/upgrade.py
@@ -777,7 +777,7 @@ Please fix this account before attempting to upgrade again
result.samdb.transaction_cancel()
raise
- logger.info("Commiting 'add groups' transaction to disk")
+ logger.info("Committing 'add groups' transaction to disk")
result.samdb.transaction_commit()
logger.info("Adding users")
@@ -811,7 +811,7 @@ Please fix this account before attempting to upgrade again
result.samdb.transaction_cancel()
raise
- logger.info("Commiting 'add users' transaction to disk")
+ logger.info("Committing 'add users' transaction to disk")
result.samdb.transaction_commit()
logger.info("Adding users to groups")
@@ -828,7 +828,7 @@ Please fix this account before attempting to upgrade again
result.samdb.transaction_cancel()
raise
- logger.info("Commiting 'add users to groups' transaction to disk")
+ logger.info("Committing 'add users to groups' transaction to disk")
result.samdb.transaction_commit()
# Set password for administrator
diff --git a/source3/utils/net_registry_check.c b/source3/utils/net_registry_check.c
index d57c2aac5e..de79f3e6af 100644
--- a/source3/utils/net_registry_check.c
+++ b/source3/utils/net_registry_check.c
@@ -378,7 +378,7 @@ static void check_ctx_transaction_stop(struct check_ctx *ctx, bool ok) {
return;
}
if (!ctx->opt.test && ok) {
- d_printf("Commiting changes\n");
+ d_printf("Committing changes\n");
if (dbwrap_transaction_commit(ctx->odb) != 0) {
DEBUG(0, ("transaction_commit failed\n"));
}