Files
tqma6-yocto-mirror/sources/poky/meta/recipes-devtools/file/files/print_c.patch
Siggi (OpenClaw Agent) 16accb6b24 Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved)
- Complete sources/ directory with all BitBake recipes
- Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl)
- Full traceability for Softwarefreigabeantrag
- GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4
- License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
2026-03-01 21:14:11 +00:00

28 lines
811 B
Diff

From e329257b8e22362b62e6c930447ef6feadd63f32 Mon Sep 17 00:00:00 2001
From: Joe Slater <joe.slater@windriver.com>
Date: Mon, 7 Aug 2023 22:37:19 +0000
Subject: [PATCH] print.c: initialize timezone data for localtime_r()
The man page for localtime() points out that while it acts
like tzset() has been called, localtime_r() might not. We
have a local version of localtime_r() that avoids this, but
we do not compile it.
Upstream-Status: Submitted [file@astron.com]
Signed-off-by: Joe Slater <joe.slater@windriver.com>
---
src/print.c | 1 +
1 file changed, 1 insertion(+)
--- git.orig/src/print.c
+++ git/src/print.c
@@ -289,6 +289,7 @@ file_fmtdatetime(char *buf, size_t bsize
goto out;
if (flags & FILE_T_LOCAL) {
+ tzset();
tm = localtime_r(&t, &tmz);
} else {
tm = gmtime_r(&t, &tmz);