summaryrefslogtreecommitdiff
path: root/ctdb/common
diff options
context:
space:
mode:
authorChris Lamb <chris@chris-lamb.co.uk>2017-02-17 22:49:57 +1300
committerGarming Sam <garming@samba.org>2017-02-22 08:26:21 +0100
commitfed795fe1d5115cee78cf53301dbc38ef8deb8b9 (patch)
tree123fde99d40044dde2d295c2b644891cad9b81f9 /ctdb/common
parentc4feed0b8cb6df71e14a30c07e4b5560368f54cc (diff)
downloadsamba-fed795fe1d5115cee78cf53301dbc38ef8deb8b9.tar.gz
Correct "emty" typo.
Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Garming Sam <garming@catalyst.net.nz>
Diffstat (limited to 'ctdb/common')
-rw-r--r--ctdb/common/ctdb_ltdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/common/ctdb_ltdb.c b/ctdb/common/ctdb_ltdb.c
index d776a796d2a..fe8b41a17fc 100644
--- a/ctdb/common/ctdb_ltdb.c
+++ b/ctdb/common/ctdb_ltdb.c
@@ -255,7 +255,7 @@ int ctdb_ltdb_unlock(struct ctdb_db_context *ctdb_db, TDB_DATA key)
int ctdb_ltdb_delete(struct ctdb_db_context *ctdb_db, TDB_DATA key)
{
if (ctdb_db->persistent != 0) {
- DEBUG(DEBUG_ERR,("Trying to delete emty record in persistent database\n"));
+ DEBUG(DEBUG_ERR,("Trying to delete empty record in persistent database\n"));
return 0;
}
if (tdb_delete(ctdb_db->ltdb->tdb, key) != 0) {