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

Commit 947a5067 authored by Steve French's avatar Steve French
Browse files

[CIFS] Fix typo



Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent b815f1e5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -495,7 +495,7 @@ CIFSSMBNegotiate(unsigned int xid, struct cifsSesInfo *ses)
				(int)(utc.tv_sec - ts.tv_sec)));
			val = (int)(utc.tv_sec - ts.tv_sec);
			seconds = val < 0 ? -val : val;
			result = (seconds / IN_TZ_ADJ) * MIN_TZ_ADJ;
			result = (seconds / MIN_TZ_ADJ) * MIN_TZ_ADJ;
			remain = seconds % MIN_TZ_ADJ;
			if(remain >= (MIN_TZ_ADJ / 2))
				result += MIN_TZ_ADJ;