summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2007-12-13 14:06:59 (GMT)
committerChris Mason <chris.mason@oracle.com>2008-09-25 15:03:58 (GMT)
commit7a7205367dfd9adf129f0ebc7d040a557fe0d1ba (patch)
tree67603e812a8f8a088d7a1334c41bf39ec6b5011d /fs
parent76fea00a0522185658b733d441d6ec049344456b (diff)
downloadlinux-fsl-qoriq-7a7205367dfd9adf129f0ebc7d040a557fe0d1ba.tar.xz
Btrfs: Fix typo in .. check (thanks Yan)
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 06d92be..41b0c7d 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -857,7 +857,7 @@ static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
path = btrfs_alloc_path();
BUG_ON(!path);
- if (namelen == 1 && strcmp(name, "..") == 0) {
+ if (namelen == 2 && strcmp(name, "..") == 0) {
struct btrfs_key key;
struct extent_buffer *leaf;
u32 nritems;