From: Michael Adam Date: Thu, 13 Feb 2014 15:44:04 +0000 (+0100) Subject: ctdb:vacuum: fix debug message typo in add_record_to_delete_list() X-Git-Tag: tdb-1.2.13~367 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd474985b1db572cb08eff39b25ecae2b9d0dea8;p=thirdparty%2Fsamba.git ctdb:vacuum: fix debug message typo in add_record_to_delete_list() Signed-off-by: Michael Adam Reviewed-by: Amitay Isaacs --- diff --git a/ctdb/server/ctdb_vacuum.c b/ctdb/server/ctdb_vacuum.c index d07afd4f90c..f6900aaf548 100644 --- a/ctdb/server/ctdb_vacuum.c +++ b/ctdb/server/ctdb_vacuum.c @@ -147,7 +147,7 @@ static int add_record_to_delete_list(struct vacuum_data *vdata, TDB_DATA key, hash = ctdb_hash(&key); if (trbt_lookup32(vdata->delete_list, hash)) { - DEBUG(DEBUG_INFO, (__location__ " Hash collission when vacuuming, skipping this record.\n")); + DEBUG(DEBUG_INFO, (__location__ " Hash collision when vacuuming, skipping this record.\n")); return 0; }