From: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
To: Linus Torvalds <torvalds@transmeta.com>
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH] vfat write wrong value into lcase flag
Date: 09 Aug 2001 00:30:58 +0900 [thread overview]
Message-ID: <87wv4er2kt.fsf@devron.myhome.or.jp> (raw)
Hi,
The current vfat is writeing wrong value into lcase flag. It is
writing the lowercase flag, although filename is uppercase.
Please apply.
--
OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
diff -urN linux-2.4.8-pre6/fs/vfat/namei.c vfat_lcase-2.4.8-pre6/fs/vfat/namei.c
--- linux-2.4.8-pre6/fs/vfat/namei.c Sat Apr 7 02:51:19 2001
+++ vfat_lcase-2.4.8-pre6/fs/vfat/namei.c Thu Aug 9 00:07:39 2001
@@ -1056,7 +1056,7 @@
(*de)->starthi = 0;
(*de)->size = 0;
(*de)->attr = is_dir ? ATTR_DIR : ATTR_ARCH;
- (*de)->lcase = CASE_LOWER_BASE | CASE_LOWER_EXT;
+ (*de)->lcase = 0;
fat_mark_buffer_dirty(sb, *bh);
next reply other threads:[~2001-08-08 15:31 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-08-08 15:30 OGAWA Hirofumi [this message]
2001-08-08 20:14 ` [PATCH] vfat write wrong value into lcase flag Nerijus Baliunas
2001-08-09 18:16 ` OGAWA Hirofumi
2001-08-10 14:09 ` Re[2]: " Nerijus Baliunas
2001-08-10 16:56 ` OGAWA Hirofumi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87wv4er2kt.fsf@devron.myhome.or.jp \
--to=hirofumi@mail.parknet.co.jp \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@transmeta.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox