Andrew Geissler | 5082cc7 | 2023-09-11 08:41:39 -0400 | [diff] [blame] | 1 | From e329257b8e22362b62e6c930447ef6feadd63f32 Mon Sep 17 00:00:00 2001 |
| 2 | From: Joe Slater <joe.slater@windriver.com> |
| 3 | Date: Mon, 7 Aug 2023 22:37:19 +0000 |
| 4 | Subject: [PATCH] print.c: initialize timezone data for localtime_r() |
| 5 | |
| 6 | The man page for localtime() points out that while it acts |
| 7 | like tzset() has been called, localtime_r() might not. We |
| 8 | have a local version of localtime_r() that avoids this, but |
| 9 | we do not compile it. |
| 10 | |
| 11 | Upstream-Status: Submitted [file@astron.com] |
| 12 | |
| 13 | Signed-off-by: Joe Slater <joe.slater@windriver.com> |
| 14 | --- |
| 15 | src/print.c | 1 + |
| 16 | 1 file changed, 1 insertion(+) |
| 17 | |
| 18 | --- git.orig/src/print.c |
| 19 | +++ git/src/print.c |
| 20 | @@ -289,6 +289,7 @@ file_fmtdatetime(char *buf, size_t bsize |
| 21 | goto out; |
| 22 | |
| 23 | if (flags & FILE_T_LOCAL) { |
| 24 | + tzset(); |
| 25 | tm = localtime_r(&t, &tmz); |
| 26 | } else { |
| 27 | tm = gmtime_r(&t, &tmz); |