Signed-off-by: Gu Zheng <guz.f...@cn.fujitsu.com>
---
 fs/f2fs/namei.c |   12 +-----------
 1 files changed, 1 insertions(+), 11 deletions(-)

diff --git a/fs/f2fs/namei.c b/fs/f2fs/namei.c
index 4e47518..106c0b4 100644
--- a/fs/f2fs/namei.c
+++ b/fs/f2fs/namei.c
@@ -83,21 +83,11 @@ static int is_multimedia_file(const unsigned char *s, const 
char *sub)
 {
        size_t slen = strlen(s);
        size_t sublen = strlen(sub);
-       int ret;
 
        if (sublen > slen)
                return 0;
 
-       ret = memcmp(s + slen - sublen, sub, sublen);
-       if (ret) {      /* compare upper case */
-               int i;
-               char upper_sub[8];
-               for (i = 0; i < sublen && i < sizeof(upper_sub); i++)
-                       upper_sub[i] = toupper(sub[i]);
-               return !memcmp(s + slen - sublen, upper_sub, sublen);
-       }
-
-       return !ret;
+       return !strncasecmp(s + slen - sublen, sub, sublen);
 }
 
 /*
-- 
1.7.7

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to