[CIFS] missing break needed to handle < when mount option "mapchars" specified

Signed-off-by: Steve French (sfrench@us.ibm.com)

+3 -2
+2 -2
fs/cifs/README
··· 371 371 on newly created files, directories, and devices (create, 372 372 mkdir, mknod) which will result in the server setting the 373 373 uid and gid to the default (usually the server uid of the 374 - usern who mounted the share). Letting the server (rather than 374 + user who mounted the share). Letting the server (rather than 375 375 the client) set the uid and gid is the default. This 376 376 parameter has no effect if the CIFS Unix Extensions are not 377 377 negotiated. ··· 384 384 client (e.g. when the application is doing large sequential 385 385 reads bigger than page size without rereading the same data) 386 386 this can provide better performance than the default 387 - behavior which caches reads (reaadahead) and writes 387 + behavior which caches reads (readahead) and writes 388 388 (writebehind) through the local Linux client pagecache 389 389 if oplock (caching token) is granted and held. Note that 390 390 direct allows write operations larger than page size
+1
fs/cifs/misc.c
··· 571 571 break; 572 572 case UNI_LESSTHAN: 573 573 target[j] = '<'; 574 + break; 574 575 default: 575 576 len = cp->uni2char(src_char, &target[j], 576 577 NLS_MAX_CHARSET_SIZE);