diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2007-06-07 11:29:35 +0100 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2007-07-09 08:23:19 +0100 |
commit | ffed8ab342e39b8b5f4d5c94c37a708e225ffcd8 (patch) | |
tree | 9252837c88f117abbd5f1f6252d116f022067531 | |
parent | 44f487a5536a3afd96a9f571de24c36559e9ae82 (diff) | |
download | kernel-crypto-ffed8ab342e39b8b5f4d5c94c37a708e225ffcd8.tar.gz kernel-crypto-ffed8ab342e39b8b5f4d5c94c37a708e225ffcd8.tar.xz kernel-crypto-ffed8ab342e39b8b5f4d5c94c37a708e225ffcd8.zip |
[GFS2] Fix typo in rename of directories
A typo caused us to pass a NULL pointer when renaming directories. It
was accidentally introduced in: [GFS2] Clean up inode number handling
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
-rw-r--r-- | fs/gfs2/ops_inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/ops_inode.c b/fs/gfs2/ops_inode.c index 9cc07f442ef..84051b997a4 100644 --- a/fs/gfs2/ops_inode.c +++ b/fs/gfs2/ops_inode.c @@ -749,7 +749,7 @@ static int gfs2_rename(struct inode *odir, struct dentry *odentry, if (error) goto out_end_trans; - error = gfs2_dir_mvino(ip, &name, nip, DT_DIR); + error = gfs2_dir_mvino(ip, &name, ndip, DT_DIR); if (error) goto out_end_trans; } else { |