Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ddae957d authored by Steve French's avatar Steve French
Browse files

[CIFS] fix typo in previous patch



Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent 533f90af
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -109,9 +109,9 @@ static int construct_dentry(struct qstr *qstring, struct file *file,
static void AdjustForTZ(struct cifsTconInfo * tcon, struct inode * inode)
{
	if((tcon) && (tcon->ses) && (tcon->ses->server)) {
		inode->i_ctime.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_ctime.tv_sec += tcon->ses->server->timeAdj;
		inode->i_mtime.tv_sec += tcon->ses->server->timeAdj;
		inode->i_atime.tv_sec += tcon->ses->server->timeAdj;
	}
	return;
}