Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/converters/ish/files/patch-decode.c
16461 views
1
--- decode.c.orig 1996-01-07 19:46:37.000000000 +0900
2
+++ decode.c 2010-01-28 10:48:29.000000000 +0900
3
@@ -265,7 +265,7 @@
4
fprintf(stderr, " ) ");
5
if (head->tstamp != 0) {
6
p = head->time;
7
- tm.tm_year = (p[3]>>1)+80;
8
+ tm.tm_year = (p[3]>>1)+1980;
9
tm.tm_mon = (p[3]&0x01)<<3;
10
tm.tm_mon += (p[2]>>5) - 1;
11
tm.tm_mday = p[2]&0x1f;
12
13