aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/cifsglob.h
diff options
context:
space:
mode:
authorSteve French <sfrench@us.ibm.com>2005-08-19 14:04:29 -0400
committerSteve French <sfrench@us.ibm.com>2005-08-19 14:04:29 -0400
commitd3485d37c0b3292aec0618b6663c57542df5da99 (patch)
treead841f90fdcd0549874eaf42fc048fbf85de645a /fs/cifs/cifsglob.h
parentc46fa8acdc533e8084359ea11c79d56eb98313fb (diff)
[CIFS] Finish cifs mount option which requests case insensitive path
name matching. Signed-off-by: Steve French (sfrench@us.ibm.com)
Diffstat (limited to 'fs/cifs/cifsglob.h')
-rw-r--r--fs/cifs/cifsglob.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h
index e8287f76484f..e7ba48c61a7a 100644
--- a/fs/cifs/cifsglob.h
+++ b/fs/cifs/cifsglob.h
@@ -110,8 +110,8 @@ enum protocolEnum {
110 */ 110 */
111 111
112struct TCP_Server_Info { 112struct TCP_Server_Info {
113 char server_Name[SERVER_NAME_LEN_WITH_NULL]; /* 15 chars + X'20'in 16th */ 113 char server_Name[SERVER_NAME_LEN_WITH_NULL]; /* 15 chars + X'20' 16th */
114 char unicode_server_Name[SERVER_NAME_LEN_WITH_NULL * 2]; /* Unicode version of server_Name */ 114 char unicode_server_Name[SERVER_NAME_LEN_WITH_NULL * 2];
115 struct socket *ssocket; 115 struct socket *ssocket;
116 union { 116 union {
117 struct sockaddr_in sockAddr; 117 struct sockaddr_in sockAddr;
@@ -231,6 +231,7 @@ struct cifsTconInfo {
231 FILE_SYSTEM_ATTRIBUTE_INFO fsAttrInfo; /* ok if file system name truncated */ 231 FILE_SYSTEM_ATTRIBUTE_INFO fsAttrInfo; /* ok if file system name truncated */
232 FILE_SYSTEM_UNIX_INFO fsUnixInfo; 232 FILE_SYSTEM_UNIX_INFO fsUnixInfo;
233 unsigned retry:1; 233 unsigned retry:1;
234 unsigned nocase:1;
234 /* BB add field for back pointer to sb struct? */ 235 /* BB add field for back pointer to sb struct? */
235}; 236};
236 237