blob: b3991faa88e5662d45d802b263bea03ad6268858 [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001From 3ddf397febf47f8de9ca2805e92355ecb3ba0e9f Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 8 Apr 2017 12:37:54 -0700
4Subject: [PATCH] Fix printf format errors with clang
5
6error: format string is not a string literal (potentially insecure)
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9---
10 src/jobs.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/src/jobs.c b/src/jobs.c
14index c2c2332..dcb81c1 100644
15--- a/src/jobs.c
16+++ b/src/jobs.c
17@@ -427,7 +427,7 @@ sprint_status(char *s, int status, int sigonly)
18 goto out;
19 #endif
20 }
21- col = fmtstr(s, 32, strsignal(st));
22+ col = fmtstr(s, 32, "%s", strsignal(st));
23 #ifdef WCOREDUMP
24 if (WCOREDUMP(status)) {
25 col += fmtstr(s + col, 16, " (core dumped)");
26--
272.12.2
28