summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ldapd/btree.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/ldapd/btree.c')
-rw-r--r--usr.sbin/ldapd/btree.c6
1 files changed, 3 insertions, 3 deletions
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)