summaryrefslogtreecommitdiffstats
path: root/meta-gnome/recipes-support/usermode/usermode/0001-formatting-issues.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-gnome/recipes-support/usermode/usermode/0001-formatting-issues.patch')
-rw-r--r--meta-gnome/recipes-support/usermode/usermode/0001-formatting-issues.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-gnome/recipes-support/usermode/usermode/0001-formatting-issues.patch b/meta-gnome/recipes-support/usermode/usermode/0001-formatting-issues.patch
new file mode 100644
index 000000000..9d512d439
--- /dev/null
+++ b/meta-gnome/recipes-support/usermode/usermode/0001-formatting-issues.patch
@@ -0,0 +1,34 @@
1From 7a316dad0697af2ef4e8079a5af51565a8195aa6 Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Mon, 24 Jul 2017 01:42:30 -0400
4Subject: [PATCH] userhelper.c: fix formatting issues
5
6Fixed when compile with "-Wformat -Wformat-security -Werror=format-security":
7|../usermode-1.111/userhelper.c:585:4: error: format not a string
8literal and no format arguments [-Werror=format-security]
9| text = g_strdup_printf(dgettext(data->domain, data->banner));
10| ^~~~
11
12Upstream-Status: Pending
13
14Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
15---
16 userhelper.c | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19diff --git a/userhelper.c b/userhelper.c
20index 76ad492..ee0da49 100644
21--- a/userhelper.c
22+++ b/userhelper.c
23@@ -582,7 +582,7 @@ converse_console(int num_msg, const struct pam_message **msg,
24
25 if (banner == 0) {
26 if ((data->banner != NULL) && (data->domain != NULL)) {
27- text = g_strdup_printf(dgettext(data->domain, data->banner));
28+ text = g_strdup_printf("%s", dgettext(data->domain, data->banner));
29 } else {
30 if ((service != NULL) && (strlen(service) > 0)) {
31 if (data->fallback_allowed) {
32--
332.8.1
34