[CIFS] Do not need to adjust for Jan/Feb for leap day calculation in 2100 (year divisible by 100)

Signed-off-by: Yehuda Sadeh Weinraub <Yehuda.Sadeh@expand.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>

+2 -1
+2 -1
fs/cifs/netmisc.c
··· 956 956 days = days - 1; /* do not count leap year for the year 2100 */ 957 957 958 958 /* adjust for leap year where we are still before leap day */ 959 - days -= ((year & 0x03) == 0) && (month < 2 ? 1 : 0); 959 + if(year != 120) 960 + days -= ((year & 0x03) == 0) && (month < 2 ? 1 : 0); 960 961 sec += 24 * 60 * 60 * days; 961 962 962 963 ts.tv_sec = sec;