diff options
author | Michael Adam <obnox@samba.org> | 2011-11-25 13:34:15 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-11-26 00:34:56 +0100 |
commit | ac2bf0ebf4762456b256509e41150cb79656325e (patch) | |
tree | a5dfb6d655883a818738bed91d64228b3c08b551 | |
parent | 586d8f688361114b21fc67c8a82afa4680e14509 (diff) | |
download | samba-ac2bf0ebf4762456b256509e41150cb79656325e.tar.gz samba-ac2bf0ebf4762456b256509e41150cb79656325e.tar.xz samba-ac2bf0ebf4762456b256509e41150cb79656325e.zip |
vacuum: fix a comment typo in vacuum_traverse()
(This used to be ctdb commit 39a5c0d8cca4ce5e8bc7055739a6377fb2dc36e0)
-rw-r--r-- | ctdb/server/ctdb_vacuum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/server/ctdb_vacuum.c b/ctdb/server/ctdb_vacuum.c index 01ea6e78c1..bdda2d6af0 100644 --- a/ctdb/server/ctdb_vacuum.c +++ b/ctdb/server/ctdb_vacuum.c @@ -236,7 +236,7 @@ static int vacuum_traverse(struct tdb_context *tdb, TDB_DATA key, TDB_DATA data, } if (data.dsize != sizeof(struct ctdb_ltdb_header)) { - /* its not a deleted record */ + /* it is not a deleted record */ vdata->full_skipped++; return 0; } |