Skip to content

Commit

Permalink
CIFS: fix mapping of SFM_SPACE and SFM_PERIOD
Browse files Browse the repository at this point in the history
- trailing space maps to 0xF028
- trailing period maps to 0xF029

This fix corrects the mapping of file names which have a trailing character
that would otherwise be illegal (period or space) but is allowed by POSIX.

Signed-off-by: Bjoern Jacke <[email protected]>
CC: Stable <[email protected]>
Signed-off-by: Steve French <[email protected]>
Björn Jacke authored and smfrench committed May 4, 2017
1 parent 3998e6b commit b704e70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/cifs/cifs_unicode.h
Original file line number Diff line number Diff line change
@@ -64,8 +64,8 @@
#define SFM_LESSTHAN ((__u16) 0xF023)
#define SFM_PIPE ((__u16) 0xF027)
#define SFM_SLASH ((__u16) 0xF026)
#define SFM_PERIOD ((__u16) 0xF028)
#define SFM_SPACE ((__u16) 0xF029)
#define SFM_SPACE ((__u16) 0xF028)
#define SFM_PERIOD ((__u16) 0xF029)

/*
* Mapping mechanism to use when one of the seven reserved characters is

0 comments on commit b704e70

Please sign in to comment.