Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F102684547
D44753.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1022 B
Referenced Files
None
Subscribers
None
D44753.diff
View Options
diff --git a/sys/kern/subr_fattime.c b/sys/kern/subr_fattime.c
--- a/sys/kern/subr_fattime.c
+++ b/sys/kern/subr_fattime.c
@@ -75,6 +75,11 @@
#include <sys/time.h>
#include <sys/clock.h>
+#ifdef TEST_DRIVER
+/* stub for testing */
+#define utc_offset() 0
+#endif
+
#define DAY (24 * 60 * 60) /* Length of day in seconds */
#define YEAR 365 /* Length of normal year */
#define LYC (4 * YEAR + 1) /* Length of 4 year leap-year cycle */
@@ -282,7 +287,7 @@
a = ts.tv_sec + ts.tv_nsec * 1e-9;
d = t = p = 0;
- timet2fattime(&ts, &d, &t, &p);
+ timespec2fattime(&ts, 1, &d, &t, &p);
printf("%04x %04x %02x -- ", d, t, p);
printf("%3d %02d %02d %02d %02d %02d -- ",
((d >> 9) & 0x7f) + 1980,
@@ -293,7 +298,7 @@
((t >> 0) & 0x1f) * 2);
ts.tv_sec = ts.tv_nsec = 0;
- fattime2timet(d, t, p, &ts);
+ fattime2timespec(d, t, p, 1, &ts);
printf("%10d.%03ld == ", ts.tv_sec, ts.tv_nsec / 1000000);
gmtime_r(&ts.tv_sec, &tm);
strftime(buf, sizeof buf, "%Y %m %d %H %M %S", &tm);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Nov 16, 8:23 PM (21 h, 25 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
14664021
Default Alt Text
D44753.diff (1022 B)
Attached To
Mode
D44753: fattime: make the test code build again
Attached
Detach File
Event Timeline
Log In to Comment