diff options
author | Steve French <sfrench@us.ibm.com> | 2006-10-11 21:23:29 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2006-10-11 21:23:29 -0400 |
commit | ddae957da48cc381c1472a8909905e1818e4afdd (patch) | |
tree | 381d630c73807ed49a879e5975918cbfa48743ff /fs | |
parent | 533f90af6d90b9e4859a158565385d1d84a79f75 (diff) |
[CIFS] fix typo in previous patch
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/readdir.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/cifs/readdir.c b/fs/cifs/readdir.c index 80e6ebd440a8..acbabc09543f 100644 --- a/fs/cifs/readdir.c +++ b/fs/cifs/readdir.c | |||
@@ -109,9 +109,9 @@ static int construct_dentry(struct qstr *qstring, struct file *file, | |||
109 | static void AdjustForTZ(struct cifsTconInfo * tcon, struct inode * inode) | 109 | static void AdjustForTZ(struct cifsTconInfo * tcon, struct inode * inode) |
110 | { | 110 | { |
111 | if((tcon) && (tcon->ses) && (tcon->ses->server)) { | 111 | if((tcon) && (tcon->ses) && (tcon->ses->server)) { |
112 | inode->i_ctime.tv_sec += tcon->ses->server.timeAdj; | 112 | inode->i_ctime.tv_sec += tcon->ses->server->timeAdj; |
113 | inode->i_mtime.tv_sec += tcon->ses->server.timeAdj; | 113 | inode->i_mtime.tv_sec += tcon->ses->server->timeAdj; |
114 | inode->i_atime.tv_sec += tcon->ses->server.timeAdj; | 114 | inode->i_atime.tv_sec += tcon->ses->server->timeAdj; |
115 | } | 115 | } |
116 | return; | 116 | return; |
117 | } | 117 | } |