Commit ddae957d authored by Steve French's avatar Steve French

[CIFS] fix typo in previous patch

Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent 533f90af
...@@ -109,9 +109,9 @@ static int construct_dentry(struct qstr *qstring, struct file *file, ...@@ -109,9 +109,9 @@ static int construct_dentry(struct qstr *qstring, struct file *file,
static void AdjustForTZ(struct cifsTconInfo * tcon, struct inode * inode) static void AdjustForTZ(struct cifsTconInfo * tcon, struct inode * inode)
{ {
if((tcon) && (tcon->ses) && (tcon->ses->server)) { if((tcon) && (tcon->ses) && (tcon->ses->server)) {
inode->i_ctime.tv_sec += tcon->ses->server.timeAdj; inode->i_ctime.tv_sec += tcon->ses->server->timeAdj;
inode->i_mtime.tv_sec += tcon->ses->server.timeAdj; inode->i_mtime.tv_sec += tcon->ses->server->timeAdj;
inode->i_atime.tv_sec += tcon->ses->server.timeAdj; inode->i_atime.tv_sec += tcon->ses->server->timeAdj;
} }
return; return;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment