diff options
author | Steve French <stevef@stevef95> | 2005-05-17 13:04:49 -0500 |
---|---|---|
committer | Steve French <stevef@stevef95> | 2005-05-17 13:04:49 -0500 |
commit | 67594feb4b68074d8807f5566536e06db9130679 (patch) | |
tree | 7360879062daf210285ab0a72be22eb26c2565e3 /fs/cifs/misc.c | |
parent | ff0d2f90fdc4b564d47a7c26b16de81a16cfa28e (diff) | |
download | linux-67594feb4b68074d8807f5566536e06db9130679.tar.gz linux-67594feb4b68074d8807f5566536e06db9130679.tar.bz2 linux-67594feb4b68074d8807f5566536e06db9130679.zip |
[CIFS] missing break needed to handle < when mount option "mapchars" specified
Signed-off-by: Steve French (sfrench@us.ibm.com)
Diffstat (limited to 'fs/cifs/misc.c')
-rw-r--r-- | fs/cifs/misc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cifs/misc.c b/fs/cifs/misc.c index db14b503d89e..072b4ee8c53e 100644 --- a/fs/cifs/misc.c +++ b/fs/cifs/misc.c @@ -571,6 +571,7 @@ cifs_convertUCSpath(char *target, const __le16 * source, int maxlen, break; case UNI_LESSTHAN: target[j] = '<'; + break; default: len = cp->uni2char(src_char, &target[j], NLS_MAX_CHARSET_SIZE); |