summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/systemd/systemd/0025-fs-utilh-add-missing-sys-stat-include.patch
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2019-05-18 09:51:24 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-21 12:56:33 +0100
commit3b06404e30e1f163175002ec95ec39b9e7a21e00 (patch)
tree0f4ba2f95f2b7478acfc537704d5d10345deaa45 /meta/recipes-core/systemd/systemd/0025-fs-utilh-add-missing-sys-stat-include.patch
parentca3de9df8affe61bcb5b8d17139f1faa8d018c77 (diff)
downloadpoky-3b06404e30e1f163175002ec95ec39b9e7a21e00.tar.gz
systemd: Some upstreamable musl patches have been upstreamed
(From OE-Core rev: 71f99af0d05656a4546e691f6b6e876776c22b13) Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/systemd/systemd/0025-fs-utilh-add-missing-sys-stat-include.patch')
-rw-r--r--meta/recipes-core/systemd/systemd/0025-fs-utilh-add-missing-sys-stat-include.patch16
1 files changed, 8 insertions, 8 deletions
diff --git a/meta/recipes-core/systemd/systemd/0025-fs-utilh-add-missing-sys-stat-include.patch b/meta/recipes-core/systemd/systemd/0025-fs-utilh-add-missing-sys-stat-include.patch
index bae9d3eaad..ada404b053 100644
--- a/meta/recipes-core/systemd/systemd/0025-fs-utilh-add-missing-sys-stat-include.patch
+++ b/meta/recipes-core/systemd/systemd/0025-fs-utilh-add-missing-sys-stat-include.patch
@@ -1,30 +1,30 @@
1From 2560a6b7b9adc5bd5dec0f87c2e3025ced8a2af2 Mon Sep 17 00:00:00 2001 1From 56e3c9581e2c9b7435d5fcbd74b47c7ccf6b3891 Mon Sep 17 00:00:00 2001
2From: Andrej Valek <andrej.valek@siemens.com> 2From: Andrej Valek <andrej.valek@siemens.com>
3Date: Thu, 18 Apr 2019 10:47:11 +0200 3Date: Thu, 18 Apr 2019 10:47:11 +0200
4Subject: [PATCH] fs-utilh: add missing sys/stat include 4Subject: fs-util.h: add missing sys/stat include
5 5
6fix error: 6fix error:
7| error: passing argument 5 of 'chase_symlinks_and_stat' from incompatible pointer type [-Werror=incompatible-pointer-types] 7| error: passing argument 5 of 'chase_symlinks_and_stat' from incompatible pointer type [-Werror=incompatible-pointer-types]
8 8
9Signed-off-by: Andrej Valek <andrej.valek@siemens.com> 9Signed-off-by: Andrej Valek <andrej.valek@siemens.com>
10 10
11Upstream-Status: Pending 11Upstream-Status: Accepted
12--- 12---
13 src/basic/fs-util.h | 1 + 13 src/basic/fs-util.h | 1 +
14 1 file changed, 1 insertion(+) 14 1 file changed, 1 insertion(+)
15 15
16diff --git a/src/basic/fs-util.h b/src/basic/fs-util.h 16diff --git a/src/basic/fs-util.h b/src/basic/fs-util.h
17index b965120..e2fdfff 100644 17index b9651205e6..c153bc4448 100644
18--- a/src/basic/fs-util.h 18--- a/src/basic/fs-util.h
19+++ b/src/basic/fs-util.h 19+++ b/src/basic/fs-util.h
20@@ -8,6 +8,7 @@ 20@@ -7,6 +7,7 @@
21 #include <stdbool.h>
21 #include <stdint.h> 22 #include <stdint.h>
22 #include <sys/inotify.h> 23 #include <sys/inotify.h>
23 #include <sys/types.h>
24+#include <sys/stat.h> 24+#include <sys/stat.h>
25 #include <sys/types.h>
25 #include <unistd.h> 26 #include <unistd.h>
26 27
27 #include "errno-util.h"
28-- 28--
292.11.0 292.20.1
30 30