Correct "emty" typo.
authorChris Lamb <chris@chris-lamb.co.uk>
Fri, 17 Feb 2017 09:49:57 +0000 (22:49 +1300)
committerGarming Sam <garming@samba.org>
Wed, 22 Feb 2017 07:26:21 +0000 (08:26 +0100)
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>
ctdb/common/ctdb_ltdb.c

index d776a796d2a7957e88ab46b9014f7ded6626f8ed..fe8b41a17fcd8bc16b0c6c37c03240407bffa612 100644 (file)
@@ -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) {