Skip to content

Commit

Permalink
[CIFS] Fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Steve French <[email protected]>
  • Loading branch information
Steve French committed Oct 2, 2006
1 parent b815f1e commit 947a506
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/cifs/cifssmb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 947a506

Please sign in to comment.