diff options
author | Chris Mason <chris.mason@oracle.com> | 2007-12-13 09:06:59 -0500 |
---|---|---|
committer | Chris Mason <chris.mason@oracle.com> | 2008-09-25 11:03:58 -0400 |
commit | 7a7205367dfd9adf129f0ebc7d040a557fe0d1ba (patch) | |
tree | 67603e812a8f8a088d7a1334c41bf39ec6b5011d /fs | |
parent | 76fea00a0522185658b733d441d6ec049344456b (diff) | |
download | lwn-7a7205367dfd9adf129f0ebc7d040a557fe0d1ba.tar.gz lwn-7a7205367dfd9adf129f0ebc7d040a557fe0d1ba.zip |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 06d92be16805..41b0c7de7a59 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; |