diff options
| -rw-r--r-- | fs/hfsplus/dir.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/hfsplus/dir.c b/fs/hfsplus/dir.c index 93fa45cc4810..33aab211695a 100644 --- a/fs/hfsplus/dir.c +++ b/fs/hfsplus/dir.c | |||
| @@ -452,7 +452,10 @@ static int hfsplus_rename(struct inode *old_dir, struct dentry *old_dentry, | |||
| 452 | 452 | ||
| 453 | /* Unlink destination if it already exists */ | 453 | /* Unlink destination if it already exists */ |
| 454 | if (new_dentry->d_inode) { | 454 | if (new_dentry->d_inode) { |
| 455 | res = hfsplus_unlink(new_dir, new_dentry); | 455 | if (S_ISDIR(new_dentry->d_inode->i_mode)) |
| 456 | res = hfsplus_rmdir(new_dir, new_dentry); | ||
| 457 | else | ||
| 458 | res = hfsplus_unlink(new_dir, new_dentry); | ||
| 456 | if (res) | 459 | if (res) |
| 457 | return res; | 460 | return res; |
| 458 | } | 461 | } |
