summaryrefslogtreecommitdiff
path: root/source4/ntvfs
diff options
context:
space:
mode:
authorKarolin Seeger <kseeger@samba.org>2013-02-18 10:04:42 +0100
committerAndrew Bartlett <abartlet@samba.org>2013-02-18 22:07:39 +1100
commitb22b22dccac6d3bdf7f02d9fe037a472df7956fd (patch)
treec2768a3942467564c220b778dbc33d26dbffb4bf /source4/ntvfs
parent75ca814f1efe435da018f7604865fda7ac59f712 (diff)
downloadsamba-b22b22dccac6d3bdf7f02d9fe037a472df7956fd.tar.gz
samba-b22b22dccac6d3bdf7f02d9fe037a472df7956fd.tar.bz2
samba-b22b22dccac6d3bdf7f02d9fe037a472df7956fd.zip
brlock_tdb.c: Fix typo in comment.
redundent -> redundant Signed-off-by: Karolin Seeger <kseeger@samba.org>
Diffstat (limited to 'source4/ntvfs')
-rw-r--r--source4/ntvfs/common/brlock_tdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/common/brlock_tdb.c b/source4/ntvfs/common/brlock_tdb.c
index 5c89b41b22..c6d736e4b8 100644
--- a/source4/ntvfs/common/brlock_tdb.c
+++ b/source4/ntvfs/common/brlock_tdb.c
@@ -151,7 +151,7 @@ static bool brl_tdb_same_context(struct lock_context *ctx1, struct lock_context
static bool brl_tdb_overlap(struct lock_struct *lck1,
struct lock_struct *lck2)
{
- /* this extra check is not redundent - it copes with locks
+ /* this extra check is not redundant - it copes with locks
that go beyond the end of 64 bit file space */
if (lck1->size != 0 &&
lck1->start == lck2->start &&