diff options
author | Alexander Kanavin <alex@linutronix.de> | 2025-01-03 11:45:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-01-04 12:34:04 +0000 |
commit | f47df2c445bfa9dec5632b71e60caad7f3675adb (patch) | |
tree | 3dad6c0cf45cbe4aa422d4fb903b254ad9969aa7 /meta/recipes-devtools/file/files/print_c.patch | |
parent | f79feb0d244ca9ad4a6c28c2d0dc979572120f11 (diff) | |
download | poky-f47df2c445bfa9dec5632b71e60caad7f3675adb.tar.gz |
file: upgrade 5.45 -> 5.46
Drop patch merged upstream.
(From OE-Core rev: 85fabd7ab4847aa62669ec4edc0dcf02bc7e9b21)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/file/files/print_c.patch')
-rw-r--r-- | meta/recipes-devtools/file/files/print_c.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/meta/recipes-devtools/file/files/print_c.patch b/meta/recipes-devtools/file/files/print_c.patch deleted file mode 100644 index 760813f9c2..0000000000 --- a/meta/recipes-devtools/file/files/print_c.patch +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
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); | ||