diff options
author | mmcc <mmcc@cvs.openbsd.org> | 2015-12-22 08:35:18 +0000 |
---|---|---|
committer | mmcc <mmcc@cvs.openbsd.org> | 2015-12-22 08:35:18 +0000 |
commit | 2600030a25344c3f8cdf539cbf0b6fcac9cf1d8b (patch) | |
tree | c023825c148fcb2fbe3900859d66e61705cb28f1 | |
parent | 5570ebcd41efc70d418b4ac329379f0a74c7f05c (diff) |
commiting -> committing
-rw-r--r-- | usr.sbin/ftp-proxy/ftp-proxy.c | 4 | ||||
-rw-r--r-- | usr.sbin/ldapd/btree.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/ftp-proxy/ftp-proxy.c b/usr.sbin/ftp-proxy/ftp-proxy.c index 44718d68f8b..5af8b46b042 100644 --- a/usr.sbin/ftp-proxy/ftp-proxy.c +++ b/usr.sbin/ftp-proxy/ftp-proxy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ftp-proxy.c,v 1.32 2015/12/04 19:05:43 sebastia Exp $ */ +/* $OpenBSD: ftp-proxy.c,v 1.33 2015/12/22 08:35:17 mmcc Exp $ */ /* * Copyright (c) 2004, 2005 Camiel Dobbelaar, <cd@sentia.nl> @@ -300,7 +300,7 @@ end_session(struct session *s) if (s->server_bufev) bufferevent_free(s->server_bufev); - /* Remove rulesets by commiting empty ones. */ + /* Remove rulesets by committing empty ones. */ err = 0; if (prepare_commit(s->id) == -1) err = errno; diff --git a/usr.sbin/ldapd/btree.c b/usr.sbin/ldapd/btree.c index eaf0d2fb7c7..2c44cc58d82 100644 --- a/usr.sbin/ldapd/btree.c +++ b/usr.sbin/ldapd/btree.c @@ -1,4 +1,4 @@ -/* $OpenBSD: btree.c,v 1.33 2015/06/03 02:24:36 millert Exp $ */ +/* $OpenBSD: btree.c,v 1.34 2015/12/22 08:35:17 mmcc Exp $ */ /* * Copyright (c) 2009, 2010 Martin Hedenfalk <martin@bzero.se> @@ -784,7 +784,7 @@ btree_txn_commit(struct btree_txn *txn) n = 0; done = 1; SIMPLEQ_FOREACH(mp, txn->dirty_queue, next) { - DPRINTF("commiting page %u", mp->pgno); + DPRINTF("committing page %u", mp->pgno); iov[n].iov_len = bt->head.psize; iov[n].iov_base = mp->page; if (++n >= BT_COMMIT_PAGES) { @@ -796,7 +796,7 @@ btree_txn_commit(struct btree_txn *txn) if (n == 0) break; - DPRINTF("commiting %u dirty pages", n); + DPRINTF("committing %u dirty pages", n); rc = writev(bt->fd, iov, n); if (rc != (ssize_t)bt->head.psize*n) { if (rc > 0) |