The patch titled
     adfs: fix filename handling
has been removed from the -mm tree.  Its filename was
     adfs-fix-filename-handling.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
Subject: adfs: fix filename handling
From: James Bursa <[EMAIL PROTECTED]>

Fix filenames on adfs discs being terminated at the first character greater
than 128 (adfs filenames are Latin 1).  I saw this problem when using a
loopback adfs image on a 2.6.17-rc5 x86_64 machine, and the patch fixed it
there.


Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 fs/adfs/dir_f.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN fs/adfs/dir_f.c~adfs-fix-filename-handling fs/adfs/dir_f.c
--- a/fs/adfs/dir_f.c~adfs-fix-filename-handling
+++ a/fs/adfs/dir_f.c
@@ -53,7 +53,7 @@ static inline int adfs_readname(char *bu
 {
        char *old_buf = buf;
 
-       while (*ptr >= ' ' && maxlen--) {
+       while ((unsigned char)*ptr >= ' ' && maxlen--) {
                if (*ptr == '/')
                        *buf++ = '.';
                else
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are


-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to