[PATCH 1/2] security: fix code style problem in security_inode_rename()

From: Haifeng Xu
Date: Mon Apr 24 2023 - 23:04:12 EST


Code indent should use tabs where possible

Signed-off-by: Haifeng Xu <haifeng.xu@xxxxxxxxxx>
---
security/security.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/security/security.c b/security/security.c
index cf6cc576736f..af83d4eb4f1e 100644
--- a/security/security.c
+++ b/security/security.c
@@ -1317,8 +1317,8 @@ int security_inode_rename(struct inode *old_dir, struct dentry *old_dentry,
struct inode *new_dir, struct dentry *new_dentry,
unsigned int flags)
{
- if (unlikely(IS_PRIVATE(d_backing_inode(old_dentry)) ||
- (d_is_positive(new_dentry) && IS_PRIVATE(d_backing_inode(new_dentry)))))
+ if (unlikely(IS_PRIVATE(d_backing_inode(old_dentry)) ||
+ (d_is_positive(new_dentry) && IS_PRIVATE(d_backing_inode(new_dentry)))))
return 0;

if (flags & RENAME_EXCHANGE) {
--
2.25.1