summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authormmcc <mmcc@openbsd.org>2015-12-22 08:35:17 +0000
committermmcc <mmcc@openbsd.org>2015-12-22 08:35:17 +0000
commitca70fba4120683defdfd4df448df76e627cb781f (patch)
treea24288a64ac6744fe4236465d7b0ea584e83db88 /usr.sbin
parentRemove a couple needless allocation casts. No binary change. (diff)
downloadwireguard-openbsd-ca70fba4120683defdfd4df448df76e627cb781f.tar.xz
wireguard-openbsd-ca70fba4120683defdfd4df448df76e627cb781f.zip
commiting -> committing
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/ftp-proxy/ftp-proxy.c4
-rw-r--r--usr.sbin/ldapd/btree.c6
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)