public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] vfat write wrong value into lcase flag
@ 2001-08-08 15:30 OGAWA Hirofumi
  2001-08-08 20:14 ` Nerijus Baliunas
  0 siblings, 1 reply; 5+ messages in thread
From: OGAWA Hirofumi @ 2001-08-08 15:30 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel

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);


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2001-08-10 16:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-08-08 15:30 [PATCH] vfat write wrong value into lcase flag OGAWA Hirofumi
2001-08-08 20:14 ` 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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox