aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/netmisc.c
diff options
context:
space:
mode:
authorSteve French <sfrench@us.ibm.com>2006-10-12 00:02:32 +0000
committerSteve French <sfrench@us.ibm.com>2006-10-12 00:02:32 +0000
commit533f90af6d90b9e4859a158565385d1d84a79f75 (patch)
tree3f141cf47d27f24e623277d2d6be2a36191c1275 /fs/cifs/netmisc.c
parent70903ca004fef17b0f6483714baefdb2f6ecceb0 (diff)
downloadkernel_samsung_smdk4412-533f90af6d90b9e4859a158565385d1d84a79f75.zip
kernel_samsung_smdk4412-533f90af6d90b9e4859a158565385d1d84a79f75.tar.gz
kernel_samsung_smdk4412-533f90af6d90b9e4859a158565385d1d84a79f75.tar.bz2
[CIFS] Fix old DOS time conversion to handle timezone
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/netmisc.c')
-rw-r--r--fs/cifs/netmisc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/netmisc.c b/fs/cifs/netmisc.c
index 3adbd12..992e80e 100644
--- a/fs/cifs/netmisc.c
+++ b/fs/cifs/netmisc.c
@@ -942,7 +942,7 @@ struct timespec cnvrtDosUnixTm(__u16 date, __u16 time)
cERROR(1,("illegal date, month %d day: %d", month, days));
month -= 1;
days += total_days_of_prev_months[month];
- days += 3653; /* account for difference in days between 1980 and 1970 */
+ days += 3652; /* account for difference in days between 1980 and 1970 */
year = sd->Year;
days += year * 365;
days += (year/4); /* leap year */